
/* Page content formatting */
body {
  font-family: Arial, Helvetica, sans-serif;
  background-color: silver;
}

.title {
  text-align: center;
}

.centre {
  margin: auto;
  width: 700px;
  border: 3px black;
  padding: 5px;
  background-color: white;
}

/* Navigation bar formatting */
.navbar {
  overflow: hidden;
  background-color: #0065CA;
  margin: auto;
  width: 710px;
}

.navbar a {
  float: left;
  font-size: 16px;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

.dropdown {
  float: left;
  overflow: hidden;
}

.dropdown .dropbtn {
  font-size: 16px;  
  border: none;
  outline: none;
  color: white;
  padding: 14px 16px;
  background-color: inherit;
  font-family: inherit;
  margin: 0;
}

.navbar a:hover, .dropdown:hover .dropbtn {
  background-color: #327eca;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #0065CA;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  float: none;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.dropdown-content a:hover {
  background-color: #327eca;
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* Application form formatting */
#application_form {
  position: centre;
  padding: 10px;
  border-style: solid;
  border-color: black;
}
#form_warning {
  margin-bottom: 10px; font-size: 14px; color: #333;
}

#submit_button {
  padding: 10px 20px; 
  background-color: #4CAF50; 
  color: white; 
  border: none; 
  cursor: pointer;
}

#application_form {
  position: relative;
}

.asterisk {
  color: red;
  font-weight: bold;
}

.form_field {
  margin-bottom: 10px;
}

.label {
  display: inline-block; width: 120px;
}

.field {
  width: 200px;
}