

.form{
    width:100%;
    margin:auto; 
    overflow:hidden;
}

.form label{
    width:100%;
    font-size:16px;
    font-weight:400;
    color:var(--silverDark);;
}

.form label span{
    color:tomato;
}

.form input,.form textarea{
    border:none; 
    background-color:var(--white);
    color:var(--black);
    width:100%;outline:none;
    margin-bottom:15px;margin-top:5px;
    transition:all ease .3s;
}

.form input{
    padding:15px;
    border-radius:8px;
}

.form input:hover{
    border:none;  /*--CONTROLAR COLOR--*/
}

.form textarea{
    padding:15px;min-height:100px;
    border-radius:8px;
}

.form textarea:hover{
    border:none; /*--CONTROLAR COLOR--*/
}

.form button{
    width:100%;outline:none;
    padding:17px;border:none;
    font-size:17px;
    background-color:var(--black); /*--CONTROLAR COLOR--*/
    color:var(--white);
    margin-top:10px;cursor: pointer;
    transition:all ease .3s;
    border:2px solid var(--black);
}

.form button:hover{
    border:2px solid var(--white);
}


/*Clase .flexInputsForm*/
.flexInputsForm{
    display:flex;
    justify-content:space-between;
    gap:15px;
}

/*Clase .widthControlLabelInputForm*/
.widthControlLabelInputForm{
    width:50%;
}


.widthControlLabelInputForm button{
    margin-top:24px;
    border-radius:8px;
}


.flexInputsForm select{
    background-color:var(--white);
    color:var(--black);
    width:100%;outline:none;
    margin-bottom:15px;margin-top:5px;
    transition:all ease .3s;
    padding:15px;
    border-radius:8px;
    border:none; 
}


@media(max-width:768px){
    /*Clase .flexInputsForm*/
    .flexInputsForm{flex-wrap:wrap;gap:0px;}
    
    .widthControlLabelInputForm{
        width:100%;
    }
   
}