* {
    -webkit-tap-highlight-color: rgba(0,0,0,0);
}

body {
    -webkit-touch-callout: none;
    -webkit-text-size-adjust: none;
    -webkit-user-select: none;
	background-color:#E4E4E4;
    background-image:linear-gradient(top, #A7A7A7 0%, #E4E4E4 51%);
    background-image:-webkit-linear-gradient(top, #A7A7A7 0%, #E4E4E4 51%);
    background-image:-ms-linear-gradient(top, #A7A7A7 0%, #E4E4E4 51%);
    background-image:-webkit-gradient(
        linear,
        left top,
        left bottom,
        color-stop(0, #A7A7A7),
        color-stop(0.51, #E4E4E4)
    );
    background-attachment:fixed;
    font-family:'HelveticaNeue-Light', 'HelveticaNeue', Helvetica, Arial, sans-serif;
    font-size:12px;
    height:100%;
    margin:0px;
    padding:0px;
    /*text-transform:uppercase;*/
    width:100%;
	
    background-color:#32383d;
    font-family: 'RobotoRegular', 'Droid Sans', 'Segoe UI', Segoe, 'San Francisco', 'Helvetica Neue', Helvetica, Arial, Geneva, sans-serif;
    font-size:12px;
}

.app {
    background: url(images/AppBackGrd1.png) no-repeat center top; 
    position: absolute;             
    left: 31%;
    top: 10%;
    height: 510px;                  
    width: 360px;                   
    text-align: center;
    padding: 180px 0px 0px 0px;     
    margin: -115px 0px 0px -112px;
}

.app1 {
    background: url(images/ht.png) no-repeat center top; 
    position: absolute;             
    left: 50%;
    top: 30%;
    height: 50px;                  
    width: 225px;                   
    text-align: center;
    padding: 180px 0px 0px 0px;     
    margin: -115px 0px 0px -112px;
}


.errormsg {
       color: yellow;                  
}


@media screen and (min-aspect-ratio: 1/1) and (min-width:400px) {
    .app {
        background-position:left center;
        padding:75px 0px 75px 170px;
        margin:-90px 0px 0px -198px;
    }
}

h1 {
    font-size:24px;
    font-weight:normal;
    margin:0px;
    overflow:visible;
    padding:0px;
    text-align:center;
}

.event {
    border-radius:4px;
    -webkit-border-radius:4px;
    color:#FFFFFF;
    font-size:12px;
    margin:0px 30px;
    padding:2px 0px;
}

.event.listening {
    background-color:#333333;
    display:block;
}

.event.received {
    background-color:#0096FF;
    display:none;
}

.eye {
    position: relative; 
    margin-top: -30px;
    margin-right: 5px;
    width: 23px;
    float: right;
    height: 9px;
}

@keyframes fade {
    from { opacity: 1.0; }
    50% { opacity: 0.4; }
    to { opacity: 1.0; }
}
 
@-webkit-keyframes fade {
    from { opacity: 1.0; }
    50% { opacity: 0.4; }
    to { opacity: 1.0; }
}
 
.blink {
    animation:fade 3000ms infinite;
    -webkit-animation:fade 3000ms infinite;
}





input[type="password"],input[type="text"]  {
  width: 350px;
  padding: 20px 0px;
  background: transparent;
  border: 0;
  border-bottom: 1px solid #FFFFFF;
  outline: none;
  color: #FFFFFF;
  font-size: 16px;
}


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;
}


.email {
  margin-top: 150px;   
  width: 350px;
  padding: 20px 0px;
  background: transparent;
  border: 0;
  border-bottom: 1px solid #FFFFFF;
  outline: none;
  color: #FFFFFF;
  font-size: 16px;
}

.forgot {
  margin-top: -14px;
  margin-left: 150px;
  display: block;
  font-size: 11px;
  text-align: center;
  font-weight: bold;
  color: #FFFFFF;
}
.forgot:hover {
  margin-top: -14px;
  margin-left: 150px;
  display: block;
  font-size: 11px;
  text-align: center;
  font-weight: bold;
  color: #002843;
}


.create {
  margin-top: 30px;
  margin-left: -150px;
  display: block;
  font-size: 11px;
  text-align: center;
  font-weight: bold;
  color: #FFFFFF;
}
.create:hover {
  margin-top: 30px;
  margin-left: -150px;
  display: block;
  font-size: 11px;
  text-align: center;
  font-weight: bold;
  color: #002843;
}

/*LETRAS PASSWORD /USER/EMAIL*/
::-webkit-input-placeholder {
  color: #CCD2D9;
  font-size: 12px;
}

.animated {
  margin-top: 25px;
  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);
  }
}