.login-page {
    min-height: calc(100vh - 90px);
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 44px 16px;
    box-sizing: border-box;
}

.login-card {
    width: 100%;
    max-width: 430px;

    background: #ffffff;
    border-radius: 12px;
    padding: 28px 28px 24px 28px;

    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.12);
    box-sizing: border-box;
}

.login-title {
    margin: 0 0 12px 0;

    color: #464646;
    font-size: 22px;
    font-weight: 700;
}

.login-subtitle {
    margin-bottom: 22px;

    color: #666666;
    font-size: 15px;
    line-height: 1.4;
}

.login-form {
    width: 100%;
}

.login-field {
    position: relative;
    margin-bottom: 14px;
}

.login-field input {
    width: 100%;
    height: 54px;
    box-sizing: border-box;

    border: none;
    outline: none;
    border-radius: 9px;

    background: #f5f5f5;
    color: #333333;

    padding: 0 48px 0 16px;

    font-size: 16px;
}

.login-field input:focus {
    background: #ffffff;
    box-shadow: inset 0 0 0 2px rgba(252, 170, 54, 0.45);
}

.login-field input::placeholder {
    color: #8a8a8a;
}

.login-help-button {
    position: absolute;
    top: 50%;
    right: 14px;
    transform: translateY(-50%);

    width: 24px;
    height: 24px;

    border: 1px solid #bdbdbd;
    border-radius: 50%;
    background: transparent;

    color: #777777;
    font-size: 14px;
    line-height: 1;

    cursor: default;
}

.login-code-button,
.login-password-button {
    width: 100%;
    height: 42px;

    border: none;
    border-radius: 9px;

    font-size: 16px;
    font-weight: 400;

    cursor: pointer;
}

.login-code-button {
    margin-top: 2px;

    background: #1CA252;
    color: #ffffff;
}

.login-code-button:hover {
    background: #24B25D;
}

.login-code-button:disabled {
    opacity: 0.7;
    cursor: default;
}

.login-password-button {
    margin-top: 12px;

    background: #f5f5f5;
    color: #444444;
}

.login-password-button:hover {
    background: #eeeeee;
}

.login-message {
   /* min-height: 20px;  */
    margin-top: 14px;
    margin-bottom: -5px;
    font-size: 14px;
    line-height: 1.35;
}

.login-message.error {
    color: #dc3545;
    margin-bottom: 8px;
}

.login-message.success {
    color: #1ca252;
}

.login-agree {
    margin-top: 0px;

    color: #777777;
    font-size: 13px;
    line-height: 1.35;
}

.login-agree a {
    color: #1a73e8;
    text-decoration: none;
}

.login-agree a:hover {
    text-decoration: none;
}




 .login-call-message {
    margin-top: 14px;
    text-align: center;
    color: #333;
}
.login-call-text {
    font-size: 15px;
    line-height: 1.35;
    color: #444;
}
.login-call-number {
    margin: 6px 0;
}
.login-call-number a {
    color: #1f9f55;
    font-size: 24px;
    font-weight: 800;
    text-decoration: none;
}
.login-call-number a:hover {
    text-decoration: none;
}
.login-call-note {
    font-size: 14px;
    line-height: 1.35;
    color: #555;
    margin-bottom: 15px;
}





.login-register-button {
    width: 100%;
    height: 42px;

    margin-top: 12px;

    border: none;
    border-radius: 9px;

    background: #f5f5f5;
    color: #464646;

    font-size: 16px;
    font-weight: 400;

    cursor: pointer;
}

.login-register-button:hover {
    background: #eeeeee;
}


.login-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 18px;
}

.login-tab {
    flex: 1;
    height: 38px;

    border: none;
    border-radius: 8px;

    background: #f5f5f5;
    color: #464646;

    font-size: 14px;
    font-weight: 400;

    cursor: pointer;
}

.login-tab:hover {
    background: #eeeeee;
}

.login-tab.active {
    background: #1CA252;
    color: #ffffff;
}

.login-tab-panel {
    display: none;
}

.login-tab-panel.active {
    display: block;
}



.login-password-wrap {
    position: relative;
}

.login-password-wrap input {
    padding-right: 46px;
}

.login-password-toggle {
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);

    width: 30px;
    height: 30px;

    border: none;
    background: transparent;
    color: #AFAFAF;

    font-size: 16px;
    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0;
}

.login-password-toggle:hover {
  /*  color: #555555;   */
}

.login-password-toggle:focus {
    outline: none;
}

.login-confirm-block {
    margin-top: 12px;
}

.login-confirm-button {
    margin-top: 0;
}


@media (max-width: 520px) {
    .login-page {
        padding: 24px 12px;
    }

    .login-card {
        padding: 22px 18px 20px 18px;
        border-radius: 10px;
    }

    .login-title {
        font-size: 24px;
    }

    .login-field input {
        height: 50px;
        font-size: 15px;
    }
}