{
    margin: 0;
    padding: 0;
    box-sizing: border-box
}body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #555764;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;

}

.form-content {
    background: linear-gradient(
        50deg,
        rgba(40,42,55,1) 50%
        rgba(40,42,55,0.7),  
    )
    url(tower-820001_1280.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 75px;
    width: 1000px;
    border-radius: 25px;
}

.form-content h2 {
    color: #f4f6f9;
    font-size: 40px;
    margin-bottom: 25px;
}

form {
    display: flex;
    flex-direction: column;
    width: 100%;

}

label {
    font-size: 17px;
    color: #959AAB;
    margin-bottom: 10px;

}


input , textarea {
    padding:  37px 24px;
    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-position: #219BF9;

}

@media(max-width:99px) {
    body {
        padding: 30px;
    }
    .form- {
        width: 100%
    }
    form {
        width: 100%;
    }
}
