@import url(/css/cssreset.css);
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  font-size: 12px;
  min-width: 1020px;
}

section, .wrapper {
  margin: 0 auto;
  width: 1000px;
}

a {
  text-decoration: none;
  color: #fff;
}

h3 {
  font-weight: bold;
}

input {
  border: none;
}

.clearfix:before, .clearfix:after {
  content: " ";
  display: table;
  clear: both;
}

ul li {
  float: left;
}

section {
  padding-top: 18px;
}
section .header {
  background: #002656;
  color: #fff;
  font-size: 20px;
  overflow: hidden;
  height: 40px;
}
section .header h2 {
  float: left;
  margin-left: 21px;
  text-transform: uppercase;
  padding: 10px 0;
}
section .header .fa-bars {
  padding-right: 10px;
}
section .header .button {
  float: right;
  font-size: 18px;
  height: 40px;
}
section .header .button .fa {
  padding-top: 13px;
}
section .body {
  background: #fff;
}

.mobile {
  display: none;
}

@media screen and (max-width: 767px) {
  .desktop {
    display: none;
  }

  .mobile {
    display: block;
  }

  html, body {
    min-width: inherit;
    width: 100%;
    overflow-x: hidden;
  }

  header h1 img {
    height: 55px;
  }

  section, .wrapper {
    width: calc(100% - 20px);
  }
}
input {
  -webkit-border-radius: 0;
  border-radius: 0;
}

.button, input[type="submit"] {
  background: #f9d102;
  color: #04335d;
  height: 30px;
  font-size: 12px;
  display: inline-block;
  padding: 0 10px;
  line-height: 30px;
  white-space: nowrap;
}
.button .fa, input[type="submit"] .fa {
  color: #fda902;
  padding: 9px 10px 9px 0;
  border-right: 1px solid #F7BB45;
  margin-right: 10px;
  -webkit-box-shadow: 1px 0px 0px 0px #F7F4AC;
  box-shadow: 1px 0px 0px 0px #F7F4AC;
}
.button:hover, input[type="submit"]:hover {
  background: #F4DA57;
}

.button:active {
  line-height: 30px;
}
.button.disabled {
  background-color: #B0AEAC;
  color: #E2DDDD;
}

input[type="submit"]:active {
  line-height: 25px;
}

@media screen and (max-width: 767px) {
  div.submit input[type="submit"] {
    float: none;
    width: 100%;
    text-transform: uppercase;
    font-size: 18px;
  }

  section .header .button {
    height: 37px;
  }
  section .header .button .fa {
    padding-top: 9px;
  }
}
.notification, #authMessage {
  position: relative;
  margin: 0 0 15px 0;
  padding: 0;
  border: 1px solid;
  border-radius: 6px;
  -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
  background-position: 10px 11px !important;
  background-repeat: no-repeat !important;
  font-size: 13px;
  width: 100%;
}
.notification .close, #authMessage .close {
  color: #990000;
  font-size: 9px;
  position: absolute;
  right: 5px;
  top: 5px;
}
.notification.attention, #authMessage.attention {
  background: #fffbcc url("/img/icons/exclamation.png") 10px 11px no-repeat;
  border-color: #e6db55;
  color: #666452;
}
.notification.information, #authMessage.information {
  background: #dbe3ff url("/img/icons/information.png");
  border-color: #a2b4ee;
  color: #585b66;
}
.notification.success, #authMessage.success {
  background: rgba(213, 255, 206, 0.78) url("/img/icons/tick_circle.png");
  border-color: #9adf8f;
  color: #556652;
}
.notification.error, .notification #authMessage, #authMessage.error, #authMessage #authMessage {
  background: rgba(255, 206, 206, 0.81) url("/img/icons/cross_circle.png");
  border-color: #df8f8f;
  color: #665252;
}

.error-message {
  color: #AD4444;
  padding-top: 5px;
}

.notification div, #authMessage {
  display: block;
  font-style: normal;
  padding: 10px 10px 10px 36px;
  line-height: 1.5em;
}

/* Notification for form inputs */
.input-notification {
  background-position: left 2px;
  background-repeat: no-repeat;
  padding: 2px 0 2px 22px;
  background-color: transparent;
  margin: 0 0 0 5px;
}

@media screen and (max-width: 767px) {
  .notification, #authMessage {
    position: absolute;
    z-index: 10000;
  }
}
footer {
  background: rgba(4, 51, 93, 0.88);
  color: #fff;
  font-size: 18px;
  margin-top: 70px;
  height: 50px;
}
footer .wrapper {
  padding: 10px 0;
  position: relative;
  height: 50px;
}
footer a {
  color: #fff;
}
footer img {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
footer li {
  float: left;
  height: 30px;
  line-height: 30px;
  vertical-align: top;
}
footer li:not(:last-of-type) {
  padding-right: 19px;
  margin-right: 19px;
  border-right: 1px solid #fff;
}
footer .fa {
  margin-right: 13px;
  font-size: 29px;
}
footer .desktop .fa-phone {
  border-radius: 50%;
  border: 1px solid #fff;
  padding: 1px 4px 0;
  font-size: 25px;
}
footer .desktop .fa-twitter {
  margin-left: 20px;
}

@media screen and (max-width: 767px) {
  footer {
    background: transparent;
  }
  footer .wrapper {
    position: initial;
  }
  footer img {
    top: 16px;
    -webkit-transform: initial;
    transform: initial;
    width: 63px;
  }
  footer li {
    font-size: 0px;
    border: 0px !important;
    margin: 0px !important;
    padding: 0px !important;
    text-align: center;
    width: 20%;
  }
  footer .fa {
    border-radius: 50%;
    background: #313131;
    font-size: 29px;
    height: 46px;
    line-height: 46px;
    width: 47px;
  }
  footer .fa.fa-phone {
    background: #00549d;
  }
}
.input {
  margin-bottom: 10px;
}
.input label {
  display: inline-block;
  font-size: 14px;
  min-width: 90px;
}

div.submit {
  overflow: hidden;
}
div.submit input[type="submit"] {
  float: right;
  cursor: pointer;
}

input[type=checkbox] {
  margin: 0 6px;
  vertical-align: top;
}

input[type="text"], input[type="password"], select {
  background-color: #ccd7e1;
  height: 29px;
  padding: 3px 0;
  width: 290px;
  text-indent: 7px;
}

textarea {
  background-color: #ccd7e1;
  border: 0px;
  padding: 5px 10px;
  width: 290px;
}

div.textarea label {
  margin-top: 4px;
  vertical-align: top;
}

select {
  border-radius: 0;
  border: none;
  -moz-appearance: none;
  -webkit-appearance: button;
  -webkit-padding-end: 20px;
  -moz-padding-end: 27px;
  -webkit-padding-start: 2px;
  -webkit-user-select: none;
  appearance: button;
  background-image: url(/img/select.png);
  background-position: calc( 100% - 7px) center;
  background-repeat: no-repeat;
  overflow: hidden;
  padding: 5px 0px;
  text-overflow: ellipsis;
  cursor: pointer;
}

@-moz-document url-prefix() {
  select {
    text-indent: 3px;
  }
}
form span.error {
  color: red;
  display: block;
  margin-top: 5px;
  text-align: right;
}

@media screen and (max-width: 767px) {
  input[type="text"], input[type="password"], select, input[type="text"].small, textarea {
    width: 100% !important;
    height: 35px;
  }

  #UserName {
    margin: 10px 0 0 0 !important;
  }

  form label {
    display: none !important;
  }

  ::-webkit-input-placeholder {
    text-transform: uppercase;
  }

  :-moz-placeholder {
    /* Firefox 18- */
    text-transform: uppercase;
  }

  ::-moz-placeholder {
    /* Firefox 19+ */
    text-transform: uppercase;
  }

  :-ms-input-placeholder {
    text-transform: uppercase;
  }
}
html {
  background: #C2BFBC url(/img/bg.jpg) no-repeat center center fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  height: 100%;
  width: 100%;
  min-width: 1020px;
}

body {
  width: 100%;
  height: 100%;
  background: -webkit-linear-gradient(rgba(58, 55, 55, 0.5), rgba(255, 255, 255, 0));
  /*Safari 5.1-6*/
  background: -o-linear-gradient(rgba(58, 55, 55, 0.5), rgba(255, 255, 255, 0));
  /*Opera 11.1-12*/
  background: -moz-linear-gradient(rgba(58, 55, 55, 0.5), rgba(255, 255, 255, 0));
  /*Fx 3.6-15*/
  background: linear-gradient(rgba(58, 55, 55, 0.5), rgba(255, 255, 255, 0));
  /*Standard*/
}

header {
  padding-top: 20px;
}

h1, h2 {
  display: inline-block;
}

h2 {
  color: #fff;
  margin-left: 418px;
  font-size: 18px;
}
h2 span {
  color: #f9d102;
}

section {
  height: calc(100% - 280px);
  margin-top: 25px;
  position: relative;
  min-height: 210px !important;
}

.notification, #authMessage {
  position: absolute;
  z-index: 1000;
}

.widget {
  background: rgba(4, 51, 93, 0.88);
  box-shadow: 0px 2px 27px #1F1D1D;
  color: #fff;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  padding: 20px;
  position: absolute;
}
.widget form {
  margin-top: 27px;
}
.widget .button {
  position: absolute;
  right: 20px;
  margin-top: -26px;
  height: 30px;
}
.widget .button:before {
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: rgba(190, 190, 190, 0);
  border-right-color: #fda902;
  border-bottom-color: #fda902;
  border-width: 3px;
  margin-left: -16px;
}
.widget a:not(.button) {
  color: #fff;
  text-decoration: underline;
}
.widget p {
  text-align: right;
}

.users-register section {
  min-height: 256px !important;
}
.users-register .widget {
  width: 822px;
}
.users-register .column1, .users-register .column2 {
  float: left;
}
.users-register .column1 {
  margin-right: 20px;
}

.users-reset label {
  min-width: 137px;
}

@media screen and (max-width: 767px) {
  html, body {
    min-width: inherit;
  }

  body {
    position: relative;
  }

  section {
    clear: both;
    height: initial;
  }

  .widget {
    width: 100% !important;
    position: initial;
    top: 0;
    left: 0;
    -webkit-transform: initial;
    transform: initial;
  }

  h1, h2 {
    display: block;
  }

  h2 {
    margin-top: 7px;
    margin-left: 0px;
    font-size: 15px;
  }

  .users-register .column1, .users-register .column2 {
    float: none;
  }
  .users-register .column1 {
    margin-right: 0px;
  }
}

/*# sourceMappingURL=login.css.map */
