h1{
    margin: 0;
    margin-bottom: 20px;
    color: #1D5C63;
}

.content{
    padding-top: 6vh;
    height: 700px;
}

form{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: white;
    width: 600px;
    padding: 50px 5px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.content input{
    width: 250px;
    height: 30px;
    border-radius: 3px;
    border: 1px solid black;
}

.content button{
    margin-top: 10px;
    cursor: pointer;
    border: none;
    background-color: #405cf5;
    color: white;
    height: 40px;
    width: 260px;
    border-radius: 6px;
}

#fnameError, #lnameError, #emailError, #phoneNumberError, #addressError{
    font-size: 0.8em;
    color: red;
    margin: 0;
}

@media screen and (max-width: 1024px){
    form{
        width: 100%;
        height: 490px;
        margin-top: 50px;
    }
}