*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    font-family: 'Merienda', cursive;
    background-color: #fefefe;
    display: flex;
    justify-content: center;
    align-content: center;
    min-height: 100vh;

}
.form-content{
    background: linear-gradient(
    50deg,
    rgba(10,42,55,1) 50%,
    rgba(40,42,55,0.7)), url(imagenes/COLORMARCA2.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 1000px;
    padding: 50px;
    border-radius: 25px;

}

.form-content h2{
    color: #f4f6f9;
    font-size: 40px;
    margin-bottom: 25px;

}

form{
    display: flex;
    flex-direction: column;
    width: 50%;

}

label{
    font-size: 17px;
    color: #959aab;
    margin-bottom: 10px;
}

input , textarea{

    padding:17px 14px;
    background-color: #333646;
    border: 0;
    font-size: 15px;
    color: #f4f6f9;
    margin-bottom: 20px;
    border-radius: 10px;

}

:focus{
    outline: 1px solid #1e92e9;

}

.btn{
    background-color:#1e92e9 ;
    width: 150px;
    align-self:center;
    cursor: pointer;

}
.btn:hover{
    background-color: #219bf9;
}

@media screen and (max-width:991){

body{
    padding: 30px;
}
 .form-content{

    width: 100%;
 }

.form{
    width: 100%;
}


}    
