* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
   align-items: center;
}

.row {
	dsiplay: inline-block;
	}
	
.main-top-bar {
  overflow: hidden;
  background-color: #003b46;
  #float: left;
  color: #ffffff;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
  font-weight: bold;
}

.sub-top-bar {
  overflow: hidden;
  background-color: #54959f;
  #float: left;
  color: #ffffff;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 24px;
}

.declaration {
  overflow: hidden;
  float: left;
  padding: 12px 0 12px 0;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
}

input[type=text], select, textarea {
  width: 100%;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
  resize: vertical;
}

input[type=password] {
  width: 100%;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
  resize: vertical;
}

input[type=submit], input[type="reset"]{
  background-color: #003b46;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  float: right;
  margin: 6px;
}

input[type=submit]:hover, input[type="reset"]:hover {
  background-color: #45a049;
}

label {
  padding: 8px 8px 8px 0;
  display: inline-block;
}

.button-row {
  display: inline-block;
  padding: 12px 12px 12px 0;
}

.container {
  border-radius: 5px;
  background-color: #f2f2f2;
  padding: 20px 40px 40px 40px;
}

.response {
  border-radius: 5px;
  background-color: #f2f2f2;
  padding: 50px;
}

.validation {
  border-radius: 5px;
  background-color: #f2f2f2;
  color: red;
  padding: 20px;
}

.col-20 {

  float: left;
  width: 20%;
  margin-top: 6px;
}

.col-80{

 float: left;
 width: 80%;
  margin-top: 6px;
}

.radio-bar {
  float: left;
  width: 75%;
  padding: 18px 12px 12px 12px;
}

.divider {
  float: left;
  width: 75%;
  padding: 12px 10px 12px 0;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}
/* Responsive layout - when the screen is less than 600px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .col-20, .col-80, input[type=submit], input[type=reset]{
    width: 100%;
    margin-top: 0;
  }
}