/* =============================
   BASE
============================= */
body {
    background: #121212;
    color: #ffd800;
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1350px;
    margin: 10px auto;
    background: rgba(0,0,0,0.75);
    padding: 80px 100px;
    border-radius: 50px;
}

/* =============================
   TITRES
============================= */
h1 {
    font-family: 'Bebas Neue', cursive;
    font-size: 20px;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

h2 {
    font-size: 10px;
    border-bottom: 2px solid #ffd800;
    padding-bottom: 10px;
    margin-bottom: 1px;
}

/* =============================
   FORMULAIRE
============================= */


.col {
    display: flex;
    flex-direction: column;
    gap: 30px;
}


label {
    font-weight: 600;
}

/* =============================
   CHAMPS
============================= */
input[type="text"],
input[type="date"],
input[type="email"],
input[type="password"],
select {
    width: 100%;
    padding: 12px 14px;
    border-radius: 8px;
    border: none;
    background: rgba(255,255,255,0.08);
    color: #ffd800;
    font-size: 14px;
}

input::placeholder {
    color: #632b2b;
}

/* =============================
   MOT DE PASSE
============================= */
.password-wrapper {
    position: relative;
}

.password-wrapper button {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #ffd800;
    cursor: pointer;
}

/* =============================
   CHECKBOX
============================= */
.multi-select {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 8px;
}

.multi-select label {
    font-weight: normal;
    cursor: pointer;
}

.multi-select input {
    margin-right: 6px;
}

/* =============================
   BOUTON
============================= */
button[type="submit"] {
    grid-column: 1 / -1;
    margin-top: 30px;
    padding: 15px;
    background: #ece2a8;
    color: #000;
    font-weight: 700;
    font-size: 16px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
}

button[type="submit"]:hover {
    background: #e6c700;
}

/* =============================
   MESSAGE
============================= */
.message {
    margin-top: 25px;
    background: #f0c35e;
    color: #000;
    padding: 15px;
    border-radius: 10px;
    font-weight: 60;
}

/* =============================
   RESPONSIVE
============================= */
@media (max-width: 100px) {
    form {
        grid-template-columns: 1fr;
    }
}

.inline-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px;
}

@media (max-width: 150px) {
    .inline-2 {
        grid-template-columns: 1fr;
    }
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px; /* espace entre les colonnes */
}

