.atc-moteur{
background:#ffffff;
border:1px solid #dddddd;
border-radius:12px;
padding:20px;
margin:25px 0;
box-shadow:0 3px 10px rgba(0,0,0,.08);
transition:all .3s ease;
}
.atc-moteur:hover{
transform:translateY(-3px);
box-shadow:0 10px 20px rgba(0,0,0,.15);
}
.atc-moteur h3{
margin:0 0 20px;
color:#123D73;
font-size:24px;
font-weight:bold;
}
.atc-moteur form{
display:flex;
gap:10px;
align-items:center;
flex-wrap:wrap;
}
.atc-moteur select{
flex:1;
min-width:300px;
padding:10px 15px;
border:1px solid #cccccc;
border-radius:8px;
background:#fff;
}
.atc-moteur input[type="submit"]{
background:#C89C3D;
color:#ffffff;
border:none;
border-radius:8px;
padding:11px 20px;
cursor:pointer;
font-weight:bold;
transition:.3s;
}
.atc-moteur input[type="submit"]:hover{
background:#123D73;
}
.atc-moteur hr{
margin:25px 0;
}
.atc-moteur table{
margin-top:20px;
}
.atc-moteur h2{
color:#123D73;
margin-top:20px;
}
.atc-moteur p{
margin-bottom:15px;
}
@media(max-width:768px){
.atc-moteur form{
display:block;
}
.atc-moteur select{
width:100%;
margin-bottom:10px;
}
.atc-moteur input[type="submit"]{
width:100%;
}
}