
#contact-page {
    width: 100vw;
    height: 80vh ;
    /* background-color: brown; */
    display: flex;
    justify-content: center;
    align-items: center;
}
/* 
.form-container {
  
} */

form {
    width: 60vmin;
    max-width: 90vmax;
    display: flex;
    flex-direction: column;
    margin-bottom: 0;
    margin-top: 20px;
}

label {
    font-size: 14pt;
    margin-bottom: 5px;
    /* justify-self: flex-start;
    align-self: flex-end; */
}

input, textarea {
    margin-bottom: 10px;
    text-indent: 5px;
    padding: 7px;
    border-radius: 5px;
    border: none;
}

#submit {
    width: 50%;
    height: 25%;
    padding: 12px 0;
    margin: 10px auto 0 auto;
    background-color: black;
    border: none;
    color: white;
    border-radius: 22px;
    transition: background-color 0.3s ease-out;
}

#submit:hover {
    background-color: #885211;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
}

