@charset "utf-8";
/* CSS Document */
* {
  box-sizing: border-box;
}
body {
  font: 0.875em/1.313em "Helvetica, Arial, sans-serif", sans-serif;
  background: url(bg.png) repeat-x;

}

.full-container {
  padding: 5px;
}

.container {
  width: 90%;
  padding: 20px;
  background: white;
  border-radius: .5em;
  margin: 20px 50px 70px 25px;
  padding-bottom: 30px;
  max-width: 900px;
  box-shadow: 0 0 30px 0px rgb(85 85 85 / 70%);
}

.container h1 {
  font-family: Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 2em;
  line-height: 2.25em;
  color: #1685AD;
  margin-top: 0px;
}

.container p {
  font-family: Helvetica, Arial, sans-serif;
  font-size: 1em;
  line-height: 1.25em;
  color: #404040;
}

.formHeader {

}
.logo {
}

.logo a {
  display: block;
  background: none;
  width: 100%;
  height: auto;
  text-indent: 0px;
  text-decoration: none;
}
.logoImage {
  width:230px;
}
input[type=text] {
  background: none repeat scroll 0% 0% #FFF;
  padding: 0.625em;
  border: 1px solid #BFBFBF;
  border-radius: 0.5em;
  position: relative;
  color: #404040;
  font-family: Helvetica,Arial,sans-serif;
  font-size: 1em;
  line-height: 1.25em;
  margin-bottom: 2em;
}

input[type=text]:focus {
  background: #fff;
  border: 1px solid #555;
  box-shadow: 0 0 3px #aaa;
  border-radius: 0.5em;
  -webkit-border-radius: 0.5em;
  -webkit-appearance: none;
  outline: none;
}

input[type=password] {
  background: none repeat scroll 0% 0% #FFF;
  padding: 0.625em;
  border: 1px solid #BFBFBF;
  border-radius: 0.5em;
  position: relative;
  color: #404040;
  font-family: Helvetica,Arial,sans-serif;
  font-size: 1em;
  line-height: 1.25em;
}

input[type=password]:focus {
  background: #fff;
  border: 1px solid #555;
  box-shadow: 0 0 3px #aaa;
  border-radius: 0.5em;
  -webkit-border-radius: 0.5em;
  -webkit-appearance: none;
  outline: none;
}

::placeholder {
  color:#FFFFFF;
}

label {
  width: 100px;
  margin-top: 3px;
  float: left;
  padding: 3px;
  font-family: Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 1em;
  line-height: 1.25em;
}

.text-under {
  margin-left: 156px;
  margin-top: 20px;
  font-family: Helvetica, Arial, sans-serif;
  font-size: .750em;
  font-style: italic;
}

input[type=submit] {
  color: #FFF;
  background: -webkit-linear-gradient(#15688A, #105F80);
  background: -o-linear-gradient(#15688A, #105F80);
  background: -moz-linear-gradient(#15688A, #105F80);
  background: linear-gradient(#15688A, #105F80);
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  box-shadow: 0px 1px 0px rgba(255, 255, 255, 0.2) inset, 0px 1px 2px rgba(0, 0, 0, 0.05);
  box-sizing: border-box;
  border-radius: 0.5em;
  outline: 0px none;
  position: relative;
  font-weight: bold;
  padding: 0.62em 1em;
  font-size: 1em;
  line-height: 1.5em;
  min-width: 5em;
  border: none;
  white-space: nowrap;
  text-align: center;
  margin-top: 2em;
}

input[type=submit]:hover {
  opacity: .85;
  cursor: pointer;
}

input[type=submit]:active {
  box-shadow: 0 0 10px 5px #1685AD inset;
  -webkit-box-shadow: 0 0 10px 5px #1685AD inset;
  -moz-box-shadow: 0 0 10px 5px #1685AD inset;
  -ms-box-shadow: 0 0 10px 5px #1685AD inset;
  -o-box-shadow: 0 0 10px 5px #1685AD inset;
}

.login-error {
  border: 1px solid #F00;
  background: #FFE8E8 url(error.png) center left no-repeat;
  margin-bottom: 25px;
  border-radius: .5em;
}

.login-error p {
  margin-left: 40px;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 1em;
  line-height: 1.25em;
  color: #404040;
  font-weight: 500;
}

#failed p {
  margin-left: 20px;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 1.5em;
  line-height: 1.25em;
  color: #990000;
  font-weight: 500;
}

#failed h1 {
  color: #f00000;
}
#failed h1 img {
  position: relative;
  top:5px;
}

@media only screen and (max-width: 600px) {

  body {
    margin:0;
  }
  .logo {
    padding-top:20px;
    text-align: center;
  }

  .full-container {
    padding: 0px;
  }
  .container {
    width: 100%;
    padding: 5px;
    background: white;
    border-radius: 0;
    margin: 10px 0px 0px 0px;
    padding-bottom: 10px;
    max-width: 900px;
    box-shadow: none;
  }

  input[type=submit] {
    color: #FFF;
    background: -webkit-linear-gradient(#15688A, #105F80);
    background: -o-linear-gradient(#15688A, #105F80);
    background: -moz-linear-gradient(#15688A, #105F80);
    background: linear-gradient(#15688A, #105F80);
    border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
    box-shadow: 0px 1px 0px rgba(255, 255, 255, 0.2) inset, 0px 1px 2px rgba(0, 0, 0, 0.05);
    box-sizing: border-box;
    border-radius: 0.2em;
    outline: 0px none;
    position: relative;
    font-weight: bold;
    padding: 1em 1em;
    font-size: 2em;
    line-height: 1.5em;
    min-width: 5em;
    border: none;
    white-space: nowrap;
    text-align: center;
    margin-top: 1em;
    margin-bottom: 0;
    margin-left: auto;
    margin-right: auto;
    width:calc(100% - 10px);
    display: block;
  }
  .logoImage {
    width:80%;
  }
  .formHeader {
    text-align: center;

  }
  .container h1 {
    font-family: Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-size: 2em;
    line-height: 1.5em;
    color: #1685AD;
    margin-top: 0px;
    margin-block-end: 0.2em;

  }
  .formDescription {
    padding-left:10px;
  }

  input[type=text] {
    display: block;
    background: none repeat scroll 0% 0% #FFF;
    padding: 0.625em;
    border: 1px solid #BFBFBF;
    border-radius: 0.5em;
    position: relative;
    color: #404040;
    font-family: Helvetica,Arial,sans-serif;
    font-size: 1.25em;
    line-height: 1.25em;
    margin-bottom: 2em;
    width:calc(100% - 10px);
    margin-left:auto;
    margin-right:auto;
  }

  input[type=password] {
    display: block;
    background: none repeat scroll 0% 0% #FFF;
    padding: 0.625em;
    border: 1px solid #BFBFBF;
    border-radius: 0.5em;
    position: relative;
    color: #404040;
    font-family: Helvetica,Arial,sans-serif;
    font-size: 1.25em;
    line-height: 1.25em;
    width:calc(100% - 10px);
    margin-left:auto;
    margin-right:auto;
  }
  label {
    display:none;
  }
  ::placeholder {
    color:#445a99;
  }
}