/* Auth pages (Login / Register) - card layout based on mockup */
.auth-page {
    display: flex;
    justify-content: center;
    padding: 30px 15px 60px;
}

.auth-card {
    width: 100%;
    max-width: 460px;
    background: #fff;
    border: 1px solid #e5ebef;
    border-radius: 14px;
    box-shadow: 0 12px 34px rgba(11,46,80,.08);
    padding: 30px 34px 34px;
}

.auth-card-register {
    max-width: 900px;
    display: grid;
    grid-template-columns: 1fr 260px;
    gap: 28px;
    align-items: start;
}

    .auth-card-register .auth-form-col {
        grid-column: 1;
    }

    .auth-card-register .auth-side-col {
        grid-column: 2;
        padding-top: 46px;
        text-align: center;
    }

.auth-card-header {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-bottom: 18px;
}

.auth-tagline {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .5px;
    line-height: 1.35;
    width: 100%;
}

    .auth-tagline .tag-start {
        color: #4a6178 !important;
    }

    .auth-tagline .tag-end {
        color: #c21a00 !important;
    }

.auth-title {
    font: 800 30px/1.1 Georgia, serif;
    color: #12365a;
    margin: 4px 0 6px;
}

.auth-subtitle {
    color: #4a6178;
    font-size: 14.5px;
    margin: 0 0 22px;
}

.auth-field {
    position: relative;
}

    .auth-field .form-control {
        padding-left: 42px !important;
    }

    .auth-field .auth-field-icon {
        position: absolute;
        left: 14px;
        top: 50%;
        transform: translateY(-50%);
        width: 18px;
        height: 18px;
        opacity: .55;
        z-index: 5;
        pointer-events: none;
    }

    .auth-field .form-floating > label {
        left: 26px;
    }

.auth-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.auth-alt-link {
    text-align: center;
    margin-top: 16px;
    font-size: 14.5px;
    color: #4a6178;
}

.auth-divider {
    display: flex;
    align-items: center;
    gap: 14px;
    color: #9fb1c1;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    margin: 26px 0 18px;
}

    .auth-divider::before,
    .auth-divider::after {
        content: "";
        flex: 1;
        height: 1px;
        background: #e5ebef;
    }

.auth-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    text-align: center;
}

    .auth-features article img {
        width: 40px;
        height: 40px;
        object-fit: contain;
        margin-bottom: 8px;
    }

    .auth-features h6 {
        font-size: 13px;
        font-weight: 800;
        color: #12365a;
        margin: 0 0 3px;
    }

    .auth-features p {
        font-size: 11.5px;
        color: #718396;
        margin: 0;
    }

.auth-side-col img {
    width: 150px;
    max-width: 100%;
    margin-bottom: 26px;
}

.auth-side-features {
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

    .auth-side-features li {
        list-style: none;
        display: flex;
        gap: 10px;
        align-items: flex-start;
    }

    .auth-side-features img {
        width: 34px;
        height: 34px;
        flex-shrink: 0;
        margin: 0;
    }

    .auth-side-features b {
        display: block;
        color: #12365a;
        font-size: 13.5px;
    }

    .auth-side-features span {
        display: block;
        color: #718396;
        font-size: 12px;
    }

@media (max-width: 860px) {
    .auth-card-register {
        grid-template-columns: 1fr;
        max-width: 460px;
    }

        .auth-card-register .auth-side-col {
            grid-column: 1;
            padding-top: 10px;
            border-top: 1px solid #e5ebef;
            margin-top: 20px;
        }
}
