#background {
    color: white;
    background-color: green;
    font-family: system-ui;
    width: 99vw;
    height: 99vh;
    position:fixed;
}

.titleBar {
    position: absolute;
    width: 100%;
    background-color: white;
    height: 8vh;
    left: 0;
    color: green;
    font-size: xxx-large;
    padding-left: 5%;
    margin-top: 2%;
    font-weight: 900;
    padding-top: 2vh;

}

.form {
  height: 50vh;
    position: absolute;
    left: 40%;
    transform: translateX(-50%);
    top: 20%;
    width: 75%;
}

#formTable {
    width:100%;
}



body {
    background-color:green;
}

input {
    height: 2.5vh;
    padding: 2%;
    width:95.5%;
}

select {
    height: 5.5vh;
    padding: 2%;
    width:100%;
}

tr {
    height: 6vh;
}

td {
    vertical-align: top;
    width: 12vw;
    text-align: right;
    padding-right: 3%;
}

textarea {
        width: 99%;
    height: 7.55vh;
}

.button {
  width: 12vw;
    height: 6vh;
    border-color: green;
    background-color: white;
    color: green;
    font-size: medium;
    font-weight: 700;
    margin-right: 2vw;
}

.button:hover {

    border-color: white;
    background-color: green;
    color: white;
    cursor: pointer;
}

.buttonBox {
        left: 52%;
    position: absolute;
    margin-top: 3%;
    width:100%;
}

.successBox {
    width: 30%;
    height: 20%;
    left: 50%;
    position: absolute;
    top: 30%;
    background-color: white;
    transform: translateX(-50%);
    color: green;
    font-family: monospace;
    text-transform: uppercase;
    font-size: xx-large;
    vertical-align: middle;
    text-align: center;
    line-height: 20vh;
    /* border-color: green; */
    border: 5px solid green;
    box-shadow: 4px 6px 1000px 1000px #000000b0;
}