﻿/* Register page layout (Contact-style) */
.auth-wrap {
    display: flex;
    justify-content: center;
}

.auth-card {
    width: 100%;
    max-width: 760px;
    background: #ffffff;
    border: 1px solid #c6d8f0;
    border-radius: 18px;
    box-shadow: 0 8px 22px rgba(30, 95, 216, 0.12);
    padding: 28px;
}

.auth-title {
    font-weight: 800;
    margin-bottom: 6px;
}

.auth-sub {
    margin-bottom: 18px;
}

/* Make the summary spacing feel clean */
.validation-summary-errors {
    margin-bottom: 12px;
}

/* Improve button row on small screens */
@media (max-width: 576px) {
    .auth-card {
        padding: 20px;
    }

    .col-12.d-flex {
        flex-direction: column;
        align-items: stretch !important;
    }

        .col-12.d-flex .btn {
            width: 100%;
        }
}
