/* ===========================================
   MUANA BITINDA LIVRAISON
   AVIS.CSS
   PARTIE 1
=========================================== */

*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

body{

background:#f5f7fb;

color:#222;

}

/* ===========================================
   PAGE
=========================================== */

.avis-page{

max-width:900px;

margin:50px auto;

padding:25px;

}

.avis-header{

text-align:center;

margin-bottom:40px;

}

.avis-header h1{

font-size:38px;

color:#0d47a1;

font-weight:700;

margin-bottom:15px;

}

.avis-header p{

font-size:17px;

color:#666;

line-height:1.8;

}

/* ===========================================
   FORMULAIRE
=========================================== */

.avis-formulaire{

background:#fff;

padding:35px;

border-radius:20px;

box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.form-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

gap:20px;

margin-bottom:20px;

}

.input-group{

margin-bottom:22px;

}

.input-group label{

display:block;

font-weight:600;

margin-bottom:8px;

color:#0d47a1;

}

.input-group input,

.input-group select,

.input-group textarea{

width:100%;

padding:14px;

border:1px solid #d9d9d9;

border-radius:10px;

font-size:15px;

transition:.3s;

background:#fff;

}

.input-group input:focus,

.input-group select:focus,

.input-group textarea:focus{

outline:none;

border-color:#1565c0;

box-shadow:0 0 10px rgba(21,101,192,.20);

}

textarea{

resize:vertical;

min-height:150px;

}
/* ===========================================
   CHECKBOX
=========================================== */

.checkbox{

display:flex;

align-items:flex-start;

gap:12px;

font-size:15px;

line-height:1.7;

}

.checkbox input{

margin-top:5px;

}

/* ===========================================
   BOUTON
=========================================== */

.btn-envoyer{

width:100%;

padding:16px;

border:none;

border-radius:12px;

background:#1565c0;

color:#fff;

font-size:18px;

font-weight:600;

cursor:pointer;

transition:.3s;

}

.btn-envoyer:hover{

background:#0d47a1;

transform:translateY(-2px);

}

/* ===========================================
   LOADER
=========================================== */

.loader-avis{

display:none;

flex-direction:column;

align-items:center;

justify-content:center;

padding:30px;

}

.loader-spinner{

width:55px;

height:55px;

border:6px solid #ddd;

border-top:6px solid #1565c0;

border-radius:50%;

animation:rotation 1s linear infinite;

margin-bottom:20px;

}

@keyframes rotation{

100%{

transform:rotate(360deg);

}

}
/* ===========================================
   MESSAGE
=========================================== */

.success-box,

.error-box{

padding:25px;

border-radius:15px;

text-align:center;

margin-top:25px;

}

.success-box{

background:#e8f5e9;

color:#2e7d32;

}

.error-box{

background:#ffebee;

color:#c62828;

}

.success-box i,

.error-box i{

font-size:60px;

margin-bottom:15px;

}

.success-box h3,

.error-box h3{

margin-bottom:10px;

font-size:26px;

}

/* ===========================================
   MOBILE
=========================================== */

@media(max-width:768px){

.avis-page{

padding:15px;

}

.avis-formulaire{

padding:20px;

}

.avis-header h1{

font-size:28px;

}

.btn-envoyer{

font-size:16px;

}

}