/* ============== Auth/Registration Styles ==============  */
/* Loaded only on Login/Registration pages via AuthLayout.razor (HeadContent). */

.auth-bg {
    min-height: 100vh;
    background: linear-gradient(rgba(0, 71, 98, 0.85), rgba(0, 55, 76, 0.9)), url('../images/layout/background.png') center / cover no-repeat fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
}

.auth-card {
    width: 100%;
    max-width: 470px;
    background: #fff;
    border-radius: 0.75rem;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.35);
    padding: 2.25rem;
}

.auth-card.auth-card-wide {
    max-width: 720px;
}

.auth-logo {
    display: block;
    height: auto;
    margin: 0 auto 1.5rem;
}

.auth-title {
    color: var(--bfc-charcoal);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.auth-subtitle {
    color: var(--bfc-charcoal);
    margin-bottom: 1.75rem;
}

/* Subtle, divider-separated Beacon employee SSO link at the bottom of the login card. */
.auth-employee-login {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #dee2e6;
    text-align: center;
    font-size: 0.875rem;
}

/* Stepper */
.stepper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.stepper .step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    position: relative;
    color: var(--bfc-grey);
    font-size: 0.85rem;
}

    .stepper .step .step-circle {
        width: 2.25rem;
        height: 2.25rem;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 600;
        background: #e9ecef;
        color: var(--bfc-grey);
        border: 2px solid #e9ecef;
        margin-bottom: 0.4rem;
        z-index: 1;
        font-size: 20px;
    }

.stepper .step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 1.125rem;
    left: 50%;
    width: 100%;
    height: 2px;
    background: #e9ecef;
    z-index: 0;
}

.stepper .step.completed .step-circle {
    background: var(--bfc-green);
    border-color: var(--bfc-green);
    color: #fff;
}

.stepper .step.completed:not(:last-child)::after {
    background: var(--bfc-green);
}

.stepper .step.active .step-circle {
    background: var(--bfc-navy);
    border-color: var(--bfc-navy);
    color: #fff;
}

.stepper .step.active {
    color: var(--bfc-navy);
    font-weight: 600;
}

.auth-footer-link {
    text-align: center;
    margin-top: 1.5rem;
    color: var(--bfc-charcoal);
}
