/* Add a black background color to the top navigation */
.topnav {
  background-color: #333;
  overflow: hidden;
  text-align: center;   
  height: 30px;   
  padding-top: 10px;      
}

/* Style the links inside the navigation bar */
.topnav a {
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
  min-height: 20px;
}

.topnav div {
  float: left;
  color: #f2f2f2;
  text-align: center;
  text-decoration: none;
  font-size: 17px;
}

/* Change the color of links on hover */
.topnav a:hover {
  background-color: #ddd;
  color: black;
}

/* Add a color to the active/current link */
.topnav a.active {
  background-color: #04AA6D;
  color: white;
}

.topnav-top {
  position: fixed;
  width: 100vw;
  top: 0;
}
                   
.topnav-bottom {
  position: fixed;
  width: 100vw;
  bottom: 0;
}

.body {
  padding-top: 50px;
  padding-bottom: 50px;
}

.button_primary{                     
  height: 32px;
  border-radius: 4px;
  min-width: 200px;
  font-size: 16px;
  line-height: 16px;
  text-align: center;
  padding: 8px 30px;
  vertical-align: middle;  
  color: #ffffff;
  background-color:#04AA6D;
  border: 1px solid #026d46;   
  cursor:pointer;
}

.button_secondary{
  height: 42px;
  border-radius: 4px;
  min-width: 200px;
  font-size: 16px;
  line-height: 16px;
  text-align: center;
  padding: 13px 30px;
  vertical-align: middle;
  color: #E20074;
  background-color:#fff;
  border: 1px solid #E6E6E6;
  cursor:pointer;
}

input {
  width: 100%;
}

input[type=text] {
  width: 100%;
  padding: 12px 20px;
  margin: 8px 0;
  box-sizing: border-box;
}