body.login-img {
    min-height: 100vh;
    background:
        radial-gradient(circle at top left, rgba(0, 171, 169, 0.18), transparent 34%),
        linear-gradient(135deg, #0b1736 0%, #15264d 44%, #f5f8fb 44%, #f5f8fb 100%);
}

.login-img .page {
    min-height: 100vh;
}

.auth-page .container-login100 {
    min-height: 100vh;
    height: auto;
    padding: 24px;
}

.auth-shell {
    width: min(1080px, 100%);
    min-height: 620px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 440px;
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 24px 70px rgba(14, 31, 66, 0.22);
}

.auth-brand-panel {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 42px;
    color: #ffffff;
    background:
        linear-gradient(135deg, rgba(11, 23, 54, 0.94), rgba(18, 60, 101, 0.86)),
        url("../../assets/images/landing/bg2.jpg");
    background-size: cover;
    background-position: center;
}

.auth-brand-logo {
    width: 230px;
    max-width: 100%;
}

.auth-brand-copy {
    max-width: 470px;
}

.auth-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    color: #9be7df;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: uppercase;
}

.auth-brand-copy h1 {
    margin: 0 0 16px;
    color: #ffffff;
    font-size: 38px;
    line-height: 1.12;
    letter-spacing: 0;
}

.auth-brand-copy p {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 16px;
    line-height: 1.65;
}

.auth-highlights {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 34px;
}

.auth-highlight {
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.86);
    font-size: 13px;
}

.auth-form-panel {
    display: flex;
    align-items: center;
    padding: 46px;
    background: #ffffff;
}

.wrap-login100.auth-card {
    width: 100%;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    overflow: visible;
}

.auth-card .panel,
.auth-card .panel-body {
    margin: 0;
    border: 0;
    box-shadow: none;
}

.auth-card .login100-form-title {
    padding-bottom: 10px;
    color: #111827;
    font-size: 28px;
    font-weight: 800;
    text-align: left;
}

.auth-subtitle {
    margin: 0 0 28px;
    color: #667085;
    line-height: 1.55;
}

.auth-field-label {
    display: block;
    margin-bottom: 8px;
    color: #344054;
    font-size: 13px;
    font-weight: 700;
}

.auth-card .wrap-input100 {
    margin-bottom: 18px;
}

.auth-card .input-group {
    display: flex;
    flex-wrap: nowrap;
    align-items: stretch;
    width: 100%;
}

.auth-card .input-group-text,
.auth-card .input100 {
    height: 48px;
    border-color: #dbe3ef;
    background: #f9fbfd;
}

.auth-card .input-group-text {
    flex: 0 0 52px;
    width: 52px;
    justify-content: center;
    border-radius: 8px 0 0 8px;
}

.auth-card .input100 {
    flex: 1 1 auto;
    width: 1%;
    min-width: 0;
    margin-left: 0 !important;
    border-radius: 0 8px 8px 0;
}

.auth-card .input100:focus {
    border-color: #00aba9;
    box-shadow: 0 0 0 3px rgba(0, 171, 169, 0.12);
    background: #ffffff;
}

.auth-card .login100-form-btn {
    height: 48px;
    border: 0;
    border-radius: 8px;
    background: #00aba9;
    font-weight: 800;
    box-shadow: 0 12px 24px rgba(0, 171, 169, 0.24);
}

.auth-card .login100-form-btn:hover {
    background: #008f8d;
}

.auth-link-row {
    display: flex;
    justify-content: flex-end;
    margin: -2px 0 14px;
}

.auth-link-row a,
.auth-footer-link a {
    color: #087b7a;
    font-weight: 700;
}

.auth-support,
.auth-footer-link {
    margin-top: 24px;
    color: #667085;
    font-size: 13px;
    text-align: center;
}

@media (max-width: 991px) {
    body.login-img {
        background: #f5f8fb;
    }

    .auth-shell {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .auth-brand-panel {
        min-height: 320px;
    }

    .auth-form-panel {
        padding: 34px;
    }
}

@media (max-width: 576px) {
    .auth-page .container-login100 {
        padding: 0;
    }

    .auth-shell {
        border-radius: 0;
        box-shadow: none;
    }

    .auth-brand-panel {
        min-height: auto;
        padding: 28px 22px;
    }

    .auth-brand-copy h1 {
        font-size: 28px;
    }

    .auth-highlights {
        grid-template-columns: 1fr;
    }

    .auth-form-panel {
        padding: 28px 22px 34px;
    }
}
