.row {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    align-items: stretch; 
}

.col {
    flex: 1 1 50%;
    padding: 0;
    display: flex;
    flex-direction: column;     
}

.banners2 {
    background-image: url('../images/demande.jpg');
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    width: 100%;
    height: 100%;
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.overlas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255,165,0,0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    color: white;
    font-family: 'Times New Roman', Times, serif;
      
}

.contents p {
    max-width: 700px;
    line-height: 1.5;
    font-size: 1.7rem; 
    
}

.aide2 {
    background-color: #00561b;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
    height: 100%;
   min-height: 100vh;
  box-sizing: border-box;   
}


form {
    width: 90%;
    margin: 0 auto;
}

label {
    color: white;
    display: block;
    
    font-size: 1rem;
    margin-left: 5px;
}

label.required::after {
    content: " *";
    color: red;
}

input, textarea, select {
    width: 100%;
    padding: 3px;
    height: 31px;
    padding-left: 18px;
    border-radius: 30px;
    border: none;
    margin-bottom: 10px;
    font-family: 'Times New Roman', Times, serif;
}
select{
  color: black;
  
}
select:valid{
  color: black;
}
textarea {
    border-radius: 15px;
    height: 120px;
}

.donner {
    width: 150px;
    padding: 8px;
    background-color: #ff7f00;
    color: #00561b;
    border: none;
    padding-bottom:30px;
    border-radius: 30px;
    display: block;
    margin: 8px auto;
    cursor: pointer;
    font-weight: bold;
}

.donner:hover {
    background-color: #ffa733;
}

#merciMessage{
   display: none; 
    color: black;
   background-color:#c7e8f4;
   text-align: center; 
      
}
input:-webkit-autofill,
textarea:-webkit-autofill,
select:-webkit-autofill {
    box-shadow: 0 0 0 1000px white inset !important;
    -webkit-box-shadow: 0 0 0 1000px white inset !important;
    -webkit-text-fill-color: black !important;
}


/* Responsive Tablette */
@media screen and (max-width: 992px) {
    .col {
        flex: 1 1 100%;
    }
    .banners2 {
        min-height: 100vh;
    }
    .overlas {
        font-size: 1.4rem;
        padding: 15px;
    }form {
        width: 95%;
    }
    .contents p {
    max-width: 700px;
    line-height: 1.8;
    font-size: 1.4rem; 
    
}
}

/* Responsive Mobile */
@media screen and (max-width: 576px) {
    @media screen and (max-width: 576px) {
    .banners2 {
        min-height: 100vh;
    }
    .overlas {
        font-size: 1.1rem;
        padding: 10px;
    }
    textarea {
        height: 50px;
    }
    .donner {
        width: 70%;
    }
    .aide2 {
    background-color: #00561b;
    padding: 15px 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    
}
.contents p {
    max-width: 700px;
    line-height: 1.2;
    text-align: left;
    letter-spacing: normal;
    font-size: 1.3rem;}
    
    
  }}