/*
 * You can place your front end styles in here. See http://lesscss.org/ for more info.
 */

@import url('https://fonts.googleapis.com/css?family=Open+Sans');
* {
  box-sizing: border-box;
}
body {
  padding: 0;
  margin: 0;
}
body,
input,
textarea,
select,
footer {
  font-family: 'Open Sans', sans-serif;
  font-size: 1em;
}
header {
  border-bottom: thick solid #2374bb;
  padding: 20px;
  background-color: #2f2f2f;
}
header div {
  display: inline-block;
}
header .rightelements {
  float: right;
  padding-top: 20px;
  transition: all .5s;
}
header .rightelements a {
  transition: all .2s;
}
header .rightelements a img {
  transition: all .2s;
}
header .rightelements a:hover img {
  transform: scale(1.1);
}
input[type=submit] {
  background: #009de0;
  color: white;
  padding: 5px;
  border-radius: 5px;
  border-width: 0;
  -webkit-transition: all .2s;
  transition: all .2s;
  -webkit-appearance: none;
}
section > * {
  padding: 0 20px;
  margin: 0;
}
section > h1 {
  padding: 10px 20px 30px;
  margin-bottom: 20px;
  background-color: #55565a;
  -webkit-box-shadow: 0 4px 60px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  box-shadow: 0 4px 60px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  color: white;
}
section .passwordReset {
  display: inline-block;
  margin: 40px 0;
}
section .passwordReset div {
  margin: 5px 0;
}
section .passwordReset .validation-summary-errors ul {
  margin-left: 20px;
}
section .passwordReset .validation-summary-errors ul li {
  list-style: disc;
}
section .passwordReset .question,
section .passwordReset input {
  padding: 10px;
  min-width: 300px;
  display: inline-block;
}
@media only screen and (max-width: 649px) {
  section .passwordReset .question,
  section .passwordReset input {
    width: 100%;
  }
}
section .passwordReset .question {
  border: 1px solid darkgray;
  max-width: 300px;
}
@media only screen and (max-width: 649px) {
  section .passwordReset .question {
    max-width: 100%;
  }
}
@media only screen and (max-width: 649px) {
  section .passwordReset {
    width: 100%;
  }
}
footer {
  clear: both;
  text-align: center;
  font-size: 0.8em;
}
.floatRightPasswordResetInfo {
  margin: 40px 0 0;
  width: 300px;
}
@media only screen and (min-width: 650px) {
  .floatRightPasswordResetInfo {
    float: right;
  }
}
.validation-summary-errors {
  background-color: #ffcfcf;
  padding: 15px 20px;
}
.validation-summary-errors ul {
  margin: 0;
  padding: 0;
}
.validation-summary-errors ul li {
  list-style: none;
}
.contact-us-help-link {
  font-size: 0.8em;
}
