/* doc-project | public/assets/css/auth-register.css | styles dédiés au formulaire d’inscription client */
.auth-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    margin: 0 auto;
    max-width: 920px;
    padding: clamp(1.5rem, 5vw, 3rem);
}

.auth-card h1 {
    font-size: clamp(2rem, 6vw, 3.4rem);
    line-height: 1;
}

.auth-card p {
    color: var(--color-muted);
}

.auth-form {
    display: grid;
    gap: 1rem;
}

.auth-form--grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.auth-form label {
    color: var(--color-muted);
    display: grid;
    font-weight: 800;
    gap: 0.4rem;
}

.auth-form input,
.auth-form select {
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    font: inherit;
    min-height: 3rem;
    padding: 0.75rem 0.9rem;
}

.auth-check,
.auth-form button {
    grid-column: 1 / -1;
}

.auth-check {
    align-items: center;
    display: flex !important;
    gap: 0.7rem;
}

@media (max-width: 720px) {
    .auth-form--grid {
        grid-template-columns: 1fr;
    }
}