@import 'https://fonts.googleapis.com/css?family=Rubik+One';
@import 'https://fonts.googleapis.com/css?family=Dosis';


body{
    background-color: rgb(198, 198, 198);
}

.Form{
    background: linear-gradient(to right, rgb(73, 73, 73),rgb(121, 121, 121), rgb(82, 82, 82));
    color:rgb(255, 255, 255);
    font-family: 'Dosis', sans-serif;
    font-size: 20px;
    width: 630px;
    margin: auto;
    display: flex;
    justify-content: center;
    text-align: center;
    padding-top: 0px;
    padding-bottom: 25px;
    border-radius: 20px;
    margin-top: 10px;
    margin-bottom: 10px;
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.3);
}

.tituloForm{
    /*background-color: aqua;*/
    width: 90%;
    margin: auto;
    margin-bottom: 0px;
    margin-top: 0px;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    
}
.titulo{
    /*background-color: blue;*/
    color:white;
    font-size: 45px;
    margin-top: 5px;
    margin-bottom: 5px;
}

.parte1{
    /*background-color: blue;*/
    margin-right: 20px;
}
.parte2{
    /*background-color: aqua;*/
    margin-left: 20px;
}

.imgLogo{
    width: 200px;
    /*background-color: blueviolet;*/
    padding-bottom: 0;
}


fieldset{
    border:none;
    display:flex;
    flex-direction: row;
}

legend{
    font-size: 30px;
    color: rgb(59, 59, 59);
    margin-bottom: 5px;
}
label{
    display:flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 250px;
}

input:not([type="submit"]) {
    height: 20px;
    width: 170px;
    color:rgb(17, 0, 0);
    padding-left: 10px;
    border-radius: 20px;
    border-style: solid;
    border-width: 1px;
    border-color: rgb(63, 62, 62);
    background-color: rgb(255, 165, 165);
    transition: all 300ms;
}
input:hover{
    background-color: rgb(150, 0, 0);
    color:white;
}
#areaTexto{
    resize: none;
    color:rgb(17, 0, 0);
    width: 170px;
    height: 100px;
    padding-left: 10px;
    padding-top: 5px;
    border-radius: 20px;
    border-style: solid;
    border-width: 1px;
    border-color: rgb(83, 83, 83);
    background-color: rgb(255, 165, 165);
    transition: all 300ms;
}
#areaTexto:hover{
    background-color: rgb(150,0,0);
    color:white;
}

.boton{
    color:rgb(255, 255, 255);
    font-family: 'Dosis', sans-serif;
    font-size: 15px;
    width: 150px;
    height: 30px;
    cursor: pointer;
    border-radius: 20px;
    border-style: solid;
    border-width: 2px;
    border-color: rgb(59, 59, 59);
    background-color: rgb(230, 12, 38);
    display: flex;
    margin: auto;
    margin-top: 10px;
    margin-bottom: 20px;
    justify-content: space-around;
    transition: all 300ms;
}
.boton:hover{
    border-color: rgb(54, 54, 54);
    background-color: rgb(60, 6, 6);
    color:rgb(255, 255, 255);
}
.boton:active{
    border-color: rgb(101, 30, 30);
    background-color: rgb(51, 0, 0);
    color:rgb(230, 180, 180);
}

.ValidacionText{
    background-color: brown;
    font-family: 'Dosis', sans-serif;
    font-size: 15px;
}

@media only screen and (max-width : 600px) {
    fieldset{
        flex-direction: column;
    }
    .Form{
        width: 90%;
    }
    .tituloForm{
        width: 90%;
        flex-direction: column;
    }
    label{
        width: 300px;
        margin-bottom: 5px;
    }
    .parte1{
        /*background-color: blue;*/
        margin-right: 0;
    }
    .parte2{
        /*background-color: aqua;*/
        margin: 0;
    }
    .boton{
        margin-top: 40px;
    }
}