/* ✅ Conteneur principal */
.register-form-container {
    max-width: 600px;
    margin: 40px auto;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

/* ✅ Table du formulaire */
.register-form-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}

.register-form-table td {
    padding: 12px;
}

/* ✅ Colonnes */
.label-column {
    text-align: right;
    font-weight: bold;
    padding-right: 10px;
    width: 40%;
}

.input-column {
    text-align: left;
    width: 60%;
}

/* ✅ Champs input et select */
.register-form-table input, 
.register-form-table select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}

/* ✅ Checkbox */
.register-checkbox-container {
    display: flex;
    align-items: center;
}

.register-checkbox-container input {
    margin-right: 8px;
}

/* ✅ Bouton d'inscription */
.register-btn {
    width: 100%;
    padding: 10px;
    background-color: #007BFF;
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
    transition: 0.3s ease;
}

.register-btn:hover {
    background: #0056b3;
}

/* ✅ Responsive */
@media (max-width: 768px) {
    .register-form-container {
        width: 90%;
    }

    .register-form-table td {
        display: block;
        text-align: center;
    }

    .label-column {
        text-align: center;
        width: 100%;
        display: block;
    }

    .input-column {
        width: 100%;
        display: block;
    }
}
