body {
    margin: 0;
}

nav {
    font-family: Arial, Helvetica, sans-serif;
    background-color: rgb(238, 238, 238);
    display: flex;
    align-items: center;
    height: 7vh;
}
.topNavLeft {
    display: flex;
    flex: 50%;
    justify-content: flex-start;
    align-items: center;
    margin-left: 0px;
}

.topNavLeft a {
    color: black;
    text-decoration: none;
    margin-left: 40px;
}

.topNavLeft img {
    height: 33px;
}

.topNavLeft .nav-img {
    margin-left: 18px;
}

.topNavRight {
    display: flex;
    flex: 50%;
    justify-content: flex-end;
    align-items: center;
    margin-right: 55px;
}

.topNavRight a {
    background-color: black;
    color: antiquewhite;
    text-decoration: none;
    border-radius: 10px;
    padding: 8px 24px;
}

h2 {
    text-align: center;
    margin-bottom: 40px;
}

.form-container {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    display: flex;
    background-color: rgb(209, 212, 212);
    margin-top: 0px;
    justify-content: center;
    align-items: center;
    /* height: 93vh; */
}

form {
    margin-top: 20px;
    padding: 10px;
    width: 50%;
}

form div {
    margin-top: 30px;
}

form div label {
    display: block;
    font-weight: bold;
    font-size: 20px;
    border-radius: 5px;
}

form input {
    font-size: 18px;
    padding: 10px;
    width: 100%;
    margin-top: 10px;
    border-radius: 5px;
    box-sizing: border-box;
}

form select {
    font-size: 20px;
    padding: 10px;
    width: 100%;
    border-radius: 5px;
    margin-top: 10px;

}

form textarea {
    font-size: 18px;
    width: 99%;
    height: 150px;
    margin-top: 10px;
    border-radius: 5px;
}

.input-submit {
    display: flex;
    /* padding: 10px; */
    align-items: flex-end;
    justify-content: flex-end;
}
.input-submit a {
    border-radius: 25px;
    background-color: black; color: aliceblue;
    width: 80px;
    padding: 8px 18px;
    text-decoration: none;
    text-align: center;
}