* {
  margin: 0;
  padding: 0;
}

body {
  background: #1696F3;
  color: #FFFFFF;
  font-family: "Open Sans", sans-serif;
}

h2 {
  color: #FFFFFF;
  font-family: "Sofia", cursive;
  font-size: 15px;
  font-weight: bold;
  font-size: 3.6em;
  text-align: center;
  margin-bottom: 20px;
}

a {
  color: #FFFFFF;
  text-decoration: none;
}


input[type="text"], input[type="password"] {
  width: 350px;
  padding: 20px 0px;
  background: transparent;
  border: 0;
  border-bottom: 1px solid #FFFFFF;
  outline: none;
  color: #FFFFFF;
  font-size: 16px;
}
input[type=checkbox] {
  display: none;
}

label {
  display: block;
  position: absolute;
  margin-right: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: transparent;
  content: "";
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  border: 3px solid #FFFFFF;
}

#agree:checked ~ label[for=agree] {
  background: #435160;
}

input[type="submit"] {
  background: #002843;
  border: 0;
  width: 350px;
  height: 40px;
  border-radius: 3px;
  color: #fff;
  font-size: 12px;
  cursor: pointer;
  transition: background 0.3s ease-in-out;
}
input[type="submit"]:hover {
  background: #024E83;
  animation-name: shake;
}

.login {
  width: 350px;
  position: absolute;
  top: 10%;
  left: 50%;
  margin-left: -175px;
}

.forgot {
  margin-top: 30px;
  display: block;
  font-size: 11px;
  text-align: center;
  font-weight: bold;
}
.forgot:hover {
  margin-top: 30px;
  display: block;
  font-size: 11px;
  text-align: center;
  font-weight: bold;
  color: #FFFFFF;
}

.agree {
  padding: 30px 0px;
  font-size: 12px;
  text-indent: 25px;
  line-height: 15px;
}


.email{
    margin-bottom:20px;
    margin-top: 40px;
}

.eye {
    position: relative; 
    margin-top: -50px;
    margin-right: 5px;
    width: 23px;
    float: right;
    height: 9px;
}

.dob{
    margin-right:63px;
    float:left ;
    color:#CCD2D9 ;
    font: 12px Arial;
}


.errormsg {
       color: yellow;  
       font-size: 12px;                
}


#line{
    margin-top:10px;
    border-bottom: 1px solid #FFFFFF;
    clear: both;
    margin-bottom:40px;
}

/*LETRAS PASSWORD /USER/EMAIL*/
::-webkit-input-placeholder {
  color: #CCD2D9;
  font-size: 12px;
}

.animated {
  animation-fill-mode: both;
  animation-duration: 1s;
}

@keyframes shake {
  0%, 100% {
    transform: translateX(0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translateX(-10px);
  }
  20%, 40%, 60%, 80% {
    transform: translateX(10px);
  }
}