.login-full {
    height: 100vh;
    width: 100vw;
}

.login-container {
    display: flex;
    min-height: 100vh;
    width: 100vw;
    overflow-y: auto;
}

.login-left {
    flex: 1;
    background: linear-gradient(180deg, #1f66cc 0%, #083a9b 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px;
}

.login-left-inner {
    max-width: 520px;
}

.brand-title {
    font-family: 'Audiowide', cursive;
    font-weight: 400;
    font-style: normal;
    font-size: 47.65px;
    line-height: 62.47px;
    letter-spacing: 0;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.brand-sub {
    font-family: 'Audiowide', cursive;
    font-weight: 400;
    font-style: normal;
    font-size: 23px;
    line-height: 26px;
    letter-spacing: 0;
    text-align: center;
    text-transform: uppercase;
}

.brand-copy {
    margin-top: 28px;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 20px;
    line-height: 45px;
    letter-spacing: 0;
    text-align: center;
    vertical-align: middle;
    opacity: .95;
}

.login-right {
    flex: 1.1;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

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

.login-title {
    font-family: 'SF Pro Display', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 46.68px;
    line-height: 130%;
    letter-spacing: -0.02em;
    text-align: center;
    vertical-align: middle;
    margin-bottom: 24px;
}

.label-strong {
    font-weight: 200;
    margin-bottom: 6px;
}

.mb-18 {
    margin-bottom: 18px;
}

.mb-22 {
    margin-bottom: 22px;
}

.toggle-eye {
    cursor: pointer;
    background: #fff;
    border-left: 0;
}

.btn-login {
    background: linear-gradient(180deg, #1f66cc 0%, #0a56b0 100%);
    color: white !important;
    font-weight: 700;
    height: 48px;
    border: 0;
    border-radius: 12px !important;
    margin-top: 2rem;
}
.btn-login:disabled{
    opacity: 0.8 !important;
}
/* Input sizing per spec */
.login-card .input-group {
    flex-wrap: nowrap;
}

.login-card .form-control {
    height: 55px;
    padding: 0 44px 0 27.23px; /* leave space on right for eye */
    border-radius: 11.45px;
    border-width: 1.95px;
}

.login-card .input-group.has-append .form-control {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

/* not used with inline eye, but keep neutral if present */
.login-card .input-group-text { height: 55px; border-radius: 11.45px; padding: 0 20px; border-width: 1.95px; }

/* Password field eye inside same input */
.password-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.password-input-wrapper > .form-control {
    padding-right: 44px; /* ensure space for eye */
    border-radius: 11.45px !important;
    position: relative;
    z-index: 1;
}

.password-toggle-icon {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #6C7278;
    cursor: pointer;
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
}

.password-toggle-icon i { font-size: 18px; color: #6C7278; }
.password-toggle-icon:hover i { color: #3a3f44; }

/* Invalid state styling - keep rounded corners and remove default invalid bg icon */
.login-card .form-control.is-invalid,
.login-card .form-control.ng-invalid.ng-touched {
    border-color: #dc3545;
    border-radius: 11.45px;
    background-image: none;
    padding-right: 44px; /* maintain space for eye */
    box-shadow: none;
}

.login-card .form-control.is-invalid:focus,
.login-card .form-control.ng-invalid.ng-touched:focus {
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.12);
}

.password-input-wrapper .password-toggle-icon.invalid,
.password-input-wrapper .form-control.is-invalid ~ .password-toggle-icon,
.password-input-wrapper .form-control.ng-invalid.ng-touched ~ .password-toggle-icon {
    color: #dc3545;
}

/* Responsive */
@media (max-width: 991.98px) {
    .login-container {
        flex-direction: column;
    }

    .login-left {
        min-height: 40vh;
        padding: 24px;
    }

    .brand-title {
        font-size: 36px;
        line-height: 44px;
    }

    .brand-sub {
        font-size: 16px;
    }

    .login-right {
        flex: unset;
        padding: 24px;
    }

    .login-card {
        max-width: 520px;
    }
}

@media (max-width: 575.98px) {
    .login-left {
        min-height: 32vh;
        padding: 20px;
    }

    .brand-title {
        font-size: 26px;
        line-height: 32px;
    }

    .brand-sub {
        font-size: 12px;
    }

    .login-right {
        padding: 16px;
    }

    .login-card {
        max-width: 100%;
    }

    .brand-copy {
        font-size: 16px;
        line-height: 28px;
    }

    .login-card .form-control {
        height: 48px;
        padding: 0 16px;
        border-radius: 12px;
    }

    .login-card .input-group-text {
        height: 48px;
        border-radius: 0 12px 12px 0;
        padding: 0 14px;
    }
}

