/* ------------------------------------------------------------
   RESET
------------------------------------------------------------ */

*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:'Poppins',sans-serif;
background:#f8fafc;
color:#1f2937;
}


/* ------------------------------------------------------------
   GLOBAL
------------------------------------------------------------ */

.container{
max-width:700px;
margin:140px auto 60px auto;
background:white;
padding:40px;
border-radius:14px;
box-shadow:0 10px 25px rgba(0,0,0,0.06);
}

h1{
text-align:center;
margin-bottom:20px;
color:#113356;
font-size:2em;
}


/* ------------------------------------------------------------
   INTRO TEXTE
------------------------------------------------------------ */

.form-intro{
text-align:center;
color:#555;
line-height:1.6;
margin-bottom:30px;
font-size:0.95em;
}

.form-info{
margin-top:25px;
text-align:center;
font-size:0.9em;
color:#666;
line-height:1.6;
}


/* ------------------------------------------------------------
   FORMULAIRE
------------------------------------------------------------ */

form{
display:flex;
flex-direction:column;
gap:18px;
}

.form-group{
display:flex;
flex-direction:column;
gap:6px;
}

label{
font-size:13px;
font-weight:600;
color:#475569;
}

input,
textarea{
padding:12px 14px;
border:1px solid #e2e8f0;
border-radius:8px;
font-size:14px;
font-family:'Poppins';
transition:0.2s;
}

textarea{
min-height:110px;
resize:vertical;
}

input:focus,
textarea:focus{
outline:none;
border-color:#F2B705;
box-shadow:0 0 0 2px rgba(242,183,5,0.2);
}

select{
padding:12px;
border:1px solid #d1d5db;
border-radius:6px;
font-size:15px;
background:white;
transition:0.2s;
}

select:focus{
outline:none;
border-color:#3b82f6;
box-shadow:0 0 0 2px rgba(59,130,246,0.2);
}

/* ------------------------------------------------------------
   BOUTON
------------------------------------------------------------ */

button{
padding:13px;
background:#113356;
border:none;
color:white;
font-size:15px;
border-radius:30px;
cursor:pointer;
transition:0.25s;
font-weight:500;
}

button:hover{
background:#F2B705;
color:#113356;
}

/* ------------------------------------------------------------
   POPUP CONFIRMATION
------------------------------------------------------------ */

.popup-overlay{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;

background:rgba(0,0,0,0.45);

display:flex;
align-items:center;
justify-content:center;

z-index:9999;
}

.popup-box{

background:white;
padding:40px;
border-radius:16px;

text-align:center;

max-width:420px;

box-shadow:0 20px 50px rgba(0,0,0,0.2);

animation:popupAppear 0.4s ease;
}

.popup-icon{
font-size:55px;
color:#22c55e;
margin-bottom:15px;
}

.popup-box h2{
color:#113356;
margin-bottom:10px;
}

.popup-box p{
color:#555;
line-height:1.6;
}

@keyframes popupAppear{

from{
transform:scale(0.8);
opacity:0;
}

to{
transform:scale(1);
opacity:1;
}

}
