*{
    margin: 0;
    padding: 0;

}

body{
    font-family: Arial, Helvetica, sans-serif;
    background: linear-gradient(
        50deg,
        rgba(40,42,55,1) 50%,
        rgba(40,42,55,0.7)),
        url(img/LOGO_fin.png);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.form-content{
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        padding: 50px;
        width: 1000px;
        border-radius: 25px;
}

.form-content a{
    color: #7e2c39;
    font-family:'Segoe UI', Tahoma, Verdana, sans-serif;
    font-size: 40px;
    margin-bottom: 25px;
    text-decoration: none;
}

.form-content h2{
    color: white;
    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: whitesmoke;
    border: 0;
    font-size: 15px;
    color: black;
    margin-bottom: 20px;
    border-radius: 10px;
}

:focus{
    outline: 1px solid #7e2c39;
}

.btn{
    background-color: #7e2c39;    
    width: 150px;
    align-self: flex-end;
    cursor: pointer;
}

.btn:hover{
    background-color: #219BF9;
}

@media(max-width:991px){
    body{
        padding: 30px;
    }

    .form-content{
        width: 100%;
    }

    form{
        width: 100%;
    }
}