@charset "utf-8";
/* CSS Document */

*{
margin:0;
padding:0;
box-sizing:border-box;
}



.contenedor {
background:linear-gradient(
50deg,
rgba(40,42,55,1)50%,
rgba(40,42,55,0.7)
),url(bg.jpg);
background-position:center;
background-size:cover;
background-repeat:no-repeat;
padding:50px;
width:1000px;
border-radius:25px;
}

.contenedor h2{
color:#FFFFFF;
font-size:36px;
margin-bottom:25px;
}

form {
display:flex;
flex-direction:column;
width:50%;
}

label{
font-size:18px;
color:#FFFFFF;
margin-bottom:10px;
}

input,textarea{
padding:17px 14px;
background-color:#e8d1c5;
border:0;
font-size:14px;
color:#0000FF;
margin-bottom:20px;
border-radius:10px;
}

:focus{
outline:5px solid #daeaf6;
}

.boton1 {
background-color:#e8d1c5;
width:150px;
color:#FFFFFF
}

.boton1:hover {
background-color:#FF0000;
}
