#main-form{
    max-width: 700px;
    margin: auto;
    background: #fff;
    padding: 20px;
    text-align: left;
    font-family: Roboto;
}

#main-form h1{
    text-align: center;
    margin-top: 40px;
    margin-bottom: 40px;
    font-family: 800;
}

.form-row{
    display: flex;
    align-items: center;
    gap: 20px;
}

.form-row .form-group{
    flex-grow: 1;
}

.form-group{
    margin-bottom: 20px;
    padding: 10px 15px;
    padding-bottom: 5px;
    border: 1px solid silver;
    background-color: #f5f5f5;
    border-radius: 10px;
}

.form-label{
    font-weight: bold;
    font-family: Roboto;
    text-transform: uppercase;
    font-size: 12px;
}

.form-field input[type=text], 
.form-field input[type=email]
{
    background: none;
    outline: none;
    border: none;
    height: 30px;
    width: 100%;
    font-family: Roboto;
}

.form-field textarea{
    margin-top: 10px;
    background: none;
    outline: none;
    border: none;
    height: 200px;
    width: 100%;
    font-family: Roboto;
}

.form-field select{
    background: none;
    outline: none;
    border: none;
    height: 30px;
    width: 100%;
    padding: 0px;
    font-family: Roboto;
}

.form-submit{
    cursor: pointer;
    background: #000;
    border-radius: 10px;
    height: 40px;
    color: #fff;
    font-size: 16px;
    text-align: center;
    border: none;
    width: 100%;
}

.form-submit:hover{
    opacity: 0.8;
}





@media (max-width: 640px){
    .form-row{
        flex-direction: column;
        gap: 0px;
    }

    .form-group{
        width: 100%;
    }
}