.entry {
    display: flex;
    height: auto;
    min-height: 100%;
    align-items: center;
    color: var(--dark-blue-color);
}

.entry .header {
    display: flex;
    justify-content: flex-end;
    flex-basis: 55%;
    margin-right: 80px;
}

.entry .header h1 {
    flex: 0 1 600px;
    font-weight: 600;
    font-size: 50px;
    line-height: 75px;
}

.entry .login {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    flex-basis: 45%;
}

.entry .login .form {
    padding: 45px 80px;
    width: 400px;
    height: 540px;
    background-color: #fff;
    box-shadow: 10px 10px 50px 10px rgba(0, 0, 0, 0.05);
    border-radius: 2px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: Montserrat, Helvetica, "sans-serif";
}

.entry .login .form > *:not(:last-child) {
    margin-bottom: 40px;
}

.entry .login .form .recaptcha {
    margin-left: auto;
    position: relative;
    margin-bottom: 20px;
}

.entry .login .form .recaptcha .g-recaptcha {
    transform:scale(0.8);
    transform-origin:0 0;
}
.entry .login .form .recaptcha-error {
    top: 65px;
}

.entry .login .form .info {
    font-weight: bold;
    font-size: 15px;
    line-height: 18px;
    color: var(--dark-blue-color);
}

.entry .login .form .email {
    color: #C4C4C4;
    border-bottom: 2px solid #C4C4C4;
    padding-bottom: 8px;
    width: 100%;
    position: relative;
}

.entry .login .form .email .label {
    font-size: 12px;
    line-height: 15px;
    color: var(--dark-blue-color);
    margin-bottom: 12px;
}

.entry .login .form .email .input {
    font-size: 11px;
    padding: 0;
    background: transparent;
    border: none;
    outline: none;
    width: 100%;
    font-family: Montserrat, Helvetica, "sans-serif";
}

.entry .login .form label.error {
    color: #fa375e;
    font-size: 12px;
    position: absolute;
}

.entry .login .form .email label.error {
    top: 50px;
    left: 0;
}

.entry .login .form .button {
    width: 100%;
}

.entry .login .footer {
    margin-top: 40px;
    font-size: 14px;
    font-weight: 500;
    line-height: 16px;
    color: #000000;
    font-family: Roboto, Helvetica, "sans-serif";
    text-align: center;
    width: 400px;
}

.entry .login .footer .link {
    color: var(--lunar-blue-color);
    text-decoration: none;
}

#hiddenRecaptcha-error {
    top: 64px;
}