body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
}



.center_Wrapper {

display: flex;
justify-content: center;
align-items: center;
width: 100%;
margin: auto;

}


.logo_Wrapper {

display: flex;
justify-content: center;
align-items: center;
width: 70%;
margin: auto;

}


#logo {

width: 70%;
height: auto;

}


header {
    background-color: #ffffff;
    margin-top: 10px;
    text-align: center;
}



nav {
    
  background-color: #001082;  
    
}

nav ul {
    list-style: none;
    padding: 10px;
}

nav ul li {
    color: #ffffff;
    display: inline;

}

nav ul li a {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
}



main {
    
    margin-top: -18px;
    width: 100%;
    padding: 20px;
    background-color: #f6f6f6;
}



h1 {
    
font-size: 16pt;   
    
}

footer {
    text-align: center;
    padding: 2px;
    background-color: #00a192;
    color: white;
}


.form_Wrapper {

    margin-top: -20px;
    background-color: #f6f6f6;


}


.sub-header_Wrapper {

display: flex;
justify-content: center;
align-items: center;
width: 100%;
padding-top: 20px;
margin: auto;

}


.spacer20 {

width: auto;
height: 20px;

    
}

.form_Shell {

display: flex;
justify-content: center;
align-items: center;
max-width: 800px;
margin: auto;

}




form {
    
    margin-top: 10px;
    margin-bottom: 20px;
    margin-left: -20px;
    width: 80%;
    

}

form label {
    display: block;
    margin-bottom: 5px;
}

form input, form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

form button {
    padding: 10px 20px;
    background-color: #003366;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

form button:hover {
    background-color: #0055cc;
}