:root {
    --primary-color: #3b82f6; /* Bleu design */
    --primary-hover: #2563eb;
    --bg-color: #f8fafc;
    --text-color: #1e293b;
    --input-bg: #ffffff;
    --border-color: #cbd5e1;
}

p {
    padding-top: 15px;
}

.form-container {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 600px;
}

input[type="email"],
input[type="password"],
input[type="text"],
.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    margin: 0.5rem 0 1.25rem 0;
    display: inline-block;
    border: 1px solid;
    border-radius: 8px;
    box-sizing: border-box;
    transition: border-color 0.2s, box-shadow 0.2s;
    font-size: 1rem;
}

input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.btn-primary, 
button[type="submit"] {
    width: 100%;
    background-color: var(--primary-color);
    color: white;
    padding: 0.75rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: background-color 0.2s;
}

.btn-primary:hover,
button[type="submit"]:hover {
    background-color: var(--primary-hover);
}

.alert-danger {
    background-color: #fee2e2;
    color: #991b1b;
    padding: 0.75rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

/* Cible les div qui entourent chaque ligne de formulaire */
.form-container form div {
    margin-bottom: 1rem;
}

/* Cible les labels générés par Symfony */
.form-container label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.mb-3 {
    font-size: x-large;
    text-align: center;
}

.checkbox-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.checkbox-row label {
    margin: 0;
}
