@import url(https://fonts.googleapis.com/css?family=Source+Sans+Pro:200,300);
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-weight: 300;
}
li{
  list-style-type: none;
}
body {
  font-family: 'Source Sans Pro', sans-serif;
  color: black;
  font-weight: 300;
}
body ::-webkit-input-placeholder {
  /* WebKit browsers */
  font-family: 'Source Sans Pro', sans-serif;
  color: black;
  font-weight: 300;
}
body :-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  font-family: 'Source Sans Pro', sans-serif;
  color: black;
  opacity: 1;
  font-weight: 300;
}
body ::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  font-family: 'Source Sans Pro', sans-serif;
  color: black;
  opacity: 1;
  font-weight: 300;
}
body :-ms-input-placeholder {
  /* Internet Explorer 10+ */
  font-family: 'Source Sans Pro', sans-serif;
  color: black;
  font-weight: 300;
}
.wrapper {
  border-top: 1px solid rgba(57, 167, 222, 0.35);
  border-bottom: 1px solid rgba(57, 167, 222, 0.35);
  background: -webkit-linear-gradient(top left, white 0%, rgba(57, 167, 222, 0.35) 100%);
  background: linear-gradient(to bottom right, white 0%, rgb(57, 167, 222, 0.35) 100%);
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: auto;
  margin-top: -300px;
  overflow: hidden;
}
.wrapper.form-success .container h1 {
  -webkit-transform: translateY(85px);
          transform: translateY(85px);
}
.container {
  max-width: 600px;
  margin: 0 auto;
  padding: 0px 0;
  height: auto;
  text-align: center;
}
.container h1 {
  font-size: 40px;
  -webkit-transition-duration: 1s;
          transition-duration: 1s;
  -webkit-transition-timing-function: ease-in-put;
          transition-timing-function: ease-in-put;
  font-weight: 200;
}
form {
  padding: 20px 0;
  position: relative;
  z-index: 2;
}
form input {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: 0;
  border: 1px solid #00678d;
  background-color: rgba(255, 255, 255, 0.2);
  width: 250px;
  border-radius: 3px;
  padding: 10px 15px;
  margin: 0 auto 10px auto;
  display: block;
  text-align: center;
  font-size: 18px;
  color: black;
  -webkit-transition-duration: 0.25s;
          transition-duration: 0.25s;
  font-weight: 300;
}
form input:hover {
  background-color: rgba(255, 255, 255, 0.4);
}
form input:focus {
  background-color: white;
  width: 300px;
  color: black;
}
form button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: 0;
  background-color: #00678d;
  border: 0;
  padding: 10px 15px;
  color: white;
  border-radius: 2px;
  width: 250px;
  cursor: pointer;
  font-size: 18px;
  -webkit-transition-duration: 0.25s;
          transition-duration: 0.25s;
}
form button:hover {
  background-color: rgb(57, 167, 222);
}
a, a:hover, a:visited{
  color:rgba(0, 3, 255, 0.68);
  text-decoration: none;
}

.eye-pass{
  position: relative;
  font-size: 20px;
  z-index: 2;
  top: 3px;
  left: 20px;
}

.eye-pass-2{
  position: absolute;
  top: 148px;
  margin-left: 93px;
  font-size: 20px;
  z-index: 2;
}

.error-title{
  text-shadow: 2px 2px 1px #39a7de;
  color: #3f3f3f;
  font-weight: bold!important;
}
.error-code{
  font-weight: bold!important;
  color: #920000;
}
.error-message{
  font-weight: bold;
    color: #333333;
}
.box{
  background: #2d2d2d;
  color: gainsboro;
  padding: 10px;
}
#our-shame{
  display: none;
  padding:20px;
}


.loader {
    border: 4px solid #f3f3f3; /* Light grey */
    border-top: 4px solid #3498db; /* Blue */
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: spin 2s linear infinite;
    float: left;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
