*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: Arial, Helvetica, sans-serif;
    background-color: #1b1c1f;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.form-content{
    background: linear-gradient(50deg,
    rgba(40,42,55,0.7)10%,
    rgba(40,42,55,0.5)
    ), url(https://urieltgc.github.io/images/imgs/img/pages/about/form-contact.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 50px;
    width: 1000px;
    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: flex-end;
    cursor: pointer;
}

.btn:hover{
    background-color: #4fb3ff;
}

@media(max-width:991){
    body{
        padding: 30px;
    }

    .form-content{
        width: 100%;
    }

    form{
        width: 100%;
    }
}