.auth-info-panel,
.auth-info-panel * {
    box-sizing: border-box;
}

.auth-info-panel {
    min-height: 100vh;
    display: flex;
    align-items: stretch;
    padding: clamp(1.25rem, 3vw, 2.5rem);
    background: #0f4f8f;
    color: #ffffff;
}

.auth-info-panel__inner {
    width: 100%;
    max-width: 440px;
    margin: 0 auto;
    display: grid;
    align-content: center;
    gap: 1.15rem;
}

.auth-info-panel__brand {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    width: fit-content;
    color: #ffffff;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
}

.auth-info-panel__brand:hover,
.auth-info-panel__brand:focus {
    color: #ffffff;
    text-decoration: none;
}

.auth-info-panel__brand-mark {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #eaf5ff;
    color: #0f4f8f;
    font-size: 0.95rem;
    font-weight: 800;
}

.auth-info-panel__eyebrow {
    width: fit-content;
    max-width: 100%;
    padding: 0.45rem 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: #d8ecff;
    font-size: 0.78rem;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
    overflow-wrap: anywhere;
}

.auth-info-panel h2 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(1.75rem, 3vw, 2.45rem);
    font-weight: 700;
    line-height: 1.13;
}

.auth-info-panel__lead {
    margin: 0;
    color: #d8ecff;
    font-size: 1rem;
    line-height: 1.65;
    overflow-wrap: anywhere;
}

.auth-info-panel__features {
    display: grid;
    gap: 0.8rem;
    margin-top: 0.25rem;
}

.auth-info-feature {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 0.75rem;
    align-items: start;
    padding: 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
}

.auth-info-feature__icon {
    width: 42px;
    height: 42px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #eaf5ff;
    color: #0f4f8f;
    font-size: 1.35rem;
    line-height: 1;
}

.auth-info-feature strong {
    display: block;
    color: #ffffff;
    font-size: 0.96rem;
    line-height: 1.3;
    overflow-wrap: anywhere;
}

.auth-info-feature small {
    display: block;
    margin-top: 0.18rem;
    color: #d8ecff;
    font-size: 0.84rem;
    line-height: 1.45;
    overflow-wrap: anywhere;
}

.auth-form-panel {
    min-height: 100vh;
}

@media (max-width: 991.98px) {
    .auth-info-panel {
        min-height: auto;
        padding: 1.15rem;
    }

    .auth-info-panel__inner {
        max-width: 720px;
        align-content: start;
        gap: 0.85rem;
    }

    .auth-info-panel h2 {
        font-size: 1.55rem;
    }

    .auth-info-panel__lead {
        font-size: 0.95rem;
        line-height: 1.55;
    }

    .auth-info-panel__features {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .auth-form-panel {
        min-height: auto;
    }
}

@media (max-width: 767.98px) {
    .auth-info-panel__features {
        grid-template-columns: 1fr;
    }

    .auth-info-panel__eyebrow,
    .auth-info-panel__lead {
        display: none;
    }
}
