*{
box-sizing:border-box;
margin:0;
padding:0;
}

body{
font-family:Arial;
background:linear-gradient(135deg,#f4f7fb,#dfe9f3);
color:#222;
padding:30px 15px;
}

.container{
max-width:850px;
margin:auto;
background:#fff;
padding:30px;
border-radius:16px;
box-shadow:0 10px 25px rgba(0,0,0,0.12);
}

h1{
text-align:center;
margin-bottom:25px;
color:#1e3a5f;
}

fieldset{
border:2px solid #d0dbe8;
border-radius:12px;
padding:20px;
margin-bottom:22px;
}

legend{
font-weight:bold;
color:#1e3a5f;
}

.form-group{
margin-bottom:18px;
}

label{
display:block;
margin-bottom:7px;
font-weight:600;
}

input,select,textarea,button{
width:100%;
padding:12px;
border:1px solid #b9c7d8;
border-radius:8px;
font-size:15px;
}

.inline-options{
display:flex;
flex-wrap:wrap;
gap:15px;
}

.inline-options label{
display:flex;
align-items:center;
gap:8px;
font-weight:normal;
}

.inline-options input{
width:auto;
}

textarea{
resize:vertical;
min-height:120px;
}

.submit-btn{
background:#2f6fed;
color:white;
border:none;
font-weight:bold;
cursor:pointer;
}

.submit-btn:hover{
background:#1f56c2;
}

footer{
text-align:center;
margin-top:20px;
}

.hint{
font-size:13px;
color:#666;
margin-top:5px;
}

.required{
color:red;
font-weight:bold;
}

/* Correction pour la case CGU */
.cgu-label{
display:flex;
align-items:center;
gap:12px;
font-weight:normal;
line-height:1.5;
margin-bottom:0;
}

.cgu-label input[type="checkbox"]{
width:auto;
padding:0;
margin:0;
border:none;
flex-shrink:0;
transform:scale(1.1);
}

.cgu-label a{
display:inline;
}

.cgu-text{
display:inline;
}