.form{
    padding-top: 150px;
    background-color: var(--secondary-color);
    height: 100%;
    background-image: url(../public/foods/6d0d04166b85c9dbe8051f007719ef1e.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
input{
    height: 30px;
    border-radius: 5px;
    border-width: 1px;
    border-color: var(--primary-color);
}
label{
    color: var(--secondary-color);
    font-size: larger;
}
header{
    .nav{
        background-color: var(--primary-color);
        height: 30px;
    }
}
form{
    padding: 50px;
    border-radius: 50px;
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    width: 70%;
    gap: 10px;
    background-color: rgba(0, 0, 0, 0.541);
}
.name{
    display: flex;
    flex-direction: row;
    gap: 50px;
    .input{
        display: flex;
        flex-direction: column;
        flex-grow: 1;
        input{
            width: 100%;
        }
    }
}
.email{
    display: flex;
    flex-direction: column;
    input{
        width: 50%;
    }
}
.message{
    display: flex;
    flex-direction: column;
    textarea{
        height: 100px;
        border-radius: 5px;
    }
}
.submit{
    display: flex;
    flex-direction: row;

    align-items: center;
    gap: 50px;
    button{
        padding: 0px;
        width: 100px;
        text-align: center;
    
    }
}