.reclamation-content {
    text-align: center;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 35px;
}
.forme-container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

form {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 950px;
    gap: 50px;
}
.label-container{
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.forms-content{
    display: flex;
    flex-direction: column;
    gap: 25px;
}

form label {
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 400;
}

form input {
    width: 100%;
    padding: 13px;
    border: 1px solid white;
    border-radius: 20px;
    box-sizing: border-box;
    background-color: #F2F8FF;
    font-size: 16px;
}
form input:focus{
    border-color: #0063CE  ;
 
}

.message-content {
    width: 100%;
    height: 200px;
    border: 1px solid white;
    border-radius: 20px;
    box-sizing: border-box;
    background-color: #F2F8FF;
    font-size: 16px;
    padding: 20px;
}
.message-content:focus{
    border-color: #0063CE  ;
    
}

.button-content button {
    padding: 10px;
    background-color: #00082B;
    color: #fff;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    width: 150px;
    height: 50px;
    font-size: 15px;

}

.button-content {
    display: flex;
    flex-direction: row;
    gap: 870px;
    justify-content: space-between;
    
}

.nom-content {
   
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.nom-content input {
      width: 490px;
}

.chek-box input {
    display: flex;
    align-items: end;
    width: 20px;
}
.end-content {
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 10px;
}

.condition-content {
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    font-size: 16px;
}

@media screen and (max-width:1100px)  {
    .nom-content input {
        width: 400px;
    }

    form {
        width: 800px;
    }

    .button-content {
        display: flex;
        flex-direction: row;
        gap: 700px;
        justify-content: space-between;
        
    }

}

@media screen and (max-width:900px)  {
    .nom-content input {
        width: 300px;
    }

    form {
        width: 620px;
    }

    .button-content {
        display: flex;
        flex-direction: row;
        gap: 500px;
        justify-content: space-between;
        
    }

}

@media screen and (max-width:700px)  {
    .nom-content {
        display: flex;
        flex-direction: column;
    }
    .nom-content input {
        width: 550px;
    }

    form {
        width: 550px;
        gap: 30px;
    }

    .button-content {
        display: flex;
        flex-direction: column;
        gap: 0px;
        align-self: center;
        
    }

}

@media screen and (max-width:610px)  {
    .nom-content {
        display: flex;
        flex-direction: column;
    }
    .nom-content input {
        width: 450px;
    }

    form {
        width: 450px;
        gap: 30px;
    }

    .button-content {
        display: flex;
        flex-direction: column;
        gap: 0px;
        align-self: center;
        
    }
}
@media screen and (max-width:460px){
    .nom-content {
        display: flex;
        flex-direction: column;
    }
    .nom-content input {
        width: 350px;
    }

    form {
        width: 350px;
        gap: 30px;
    }
}









