@font-face {
  font-family: 'OpenSans';
  src: url('../fonts/OpenSans-Regular.eot');
  src: local('Ã¢ËœÂº'), url('../fonts/OpenSans-Regular.woff') format('woff'), url('../fonts/OpenSans-Regular.ttf') format('truetype'), url('../fonts/OpenSans-Regular.svg') format('svg');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Play';
  src: url('./fonts/Play-Regular.eot');
  src: local('Ã¢ËœÂº'), url('./fonts/Play-Regular.woff') format('woff'), url('../fonts/Play-Regular.ttf') format('truetype'), url('../fonts/Play-Regular.svg') format('svg');
  font-weight: normal;
  font-style: normal;
}


body{
  width:100%;
  height: 100%;
  display:flex; 
  flex-direction: column;
  background: linear-gradient(#eeeeee 25%, #a6a6a6 90%);
  background-attachment: fixed;
  margin: 0;
  padding: 0;
}

#deos_header{
  display:flex;
  align-items: center;
  width:100%;
  background-color:#eee;
  padding: 0;
  margin: 0;
  font-family: PT Sans, Helvetica, Arial, sans-serif;
  justify-content: center;
}

#deos_header img{
  height:75px;
  width:auto;
  float:left;
  margin:10px 15px 5px 10px;
}

#deos_header h1{
  margin-bottom: 5px;
  text-transform: uppercase;
}

#deos_header a{
  color: black;
  text-decoration: none;
}

#content{
  margin:auto;
  border: 1pt solid black;
  border-radius: 10px;
  background-color:white;
  margin-top: 10px;
  color: black;
}

#content > p:first-of-type{
  white-space: pre-line;
  margin-bottom: 2em;
}

#content > p:nth-of-type(2){
  font-weight: bold;
  text-align: center;
}

#content h2{
  text-align: center;
}

#form_div {
  width: 95%;
  margin: 0 auto;
  background-color: cornsilk;
  padding: 10px;
  border: 1pt solid black;
  border-radius: 10px;
}

#form_div form label {
  display: block;
  margin-top: 12px;
  font-weight: bold;
}

#form_div form input, form select{
  width: 100%;
  box-sizing: border-box; /* ensures padding doesn't break the width */
  padding: 8px;
  margin-top: 10px;
}

#form_div form input[type="submit"] {
  margin-top: 16px;
  cursor: pointer;
}

#form_div form input:not([type="checkbox"]),
#form_div form select {
  width: 100%;
  box-sizing: border-box;
  padding: 8px;
  margin-top: 10px;
}

#form_div h2, .disclaimer-header{
  text-align:center;
  font-weight: bold;
}

.disclaimer-text{
  font-size: .8em;
}

p.disclaimer-text:nth-of-type(3){
  font-weight: bold;
}

.help_text{
  font-size: .8em;
}

#termconditions {
  display: inline-flex;
  align-items: center;
  width: 75%;
}

#termconditions input[type='checkbox'] {
  width: auto;      /* override the 100% */
  margin: 0 8px 0 0;
}

#termconditions label {
  margin: 0;
}

#footer{
  background-color: #eeeeee;
  border-top: 1pt solid black;
  margin-top: 25px;
  width: 100%;
  display:flex;
  flex-direction: column;
  align-items: center;
}

#footer a{
  color: sienna;
  text-decoration: none;
}
#footer a:hover{
  text-decoration:underline;
}
#ud_logos{
  display: flex;
  flex-wrap: nowrap;
}
#ud_logos img{
  max-width: 250px;
  width: auto;
  height: 50px;
  filter: grayscale(100%);
}

#footer ul{
  width: 100%;
  display:flex;
  flex-direction: row;
  justify-items: start;
  justify-content: space-between;
  padding: 0;
  margin: 10px auto;
}
#footer ul li{
  white-space: nowrap;
}

.error{
  color:#DD0000;
  font-weight: bold;
  font-size: 1.2em;
}


/* small screen adjustments */
@media (max-width: 600px){
  #content{
    width:90%;
    padding: 5px;
  }
  #footer_content{
    width: 90%;
  }
}

/* large screen adjustments */
@media (min-width: 600px){
  #content{
    width:60%;
    min-width:550px;
    padding: 10px;
  }
  #footer_content{
    width: 50%;
    margin: 10px auto;
  }

}

