* {
    border: 0;
    margin: 0;
    text-decoration: none;
    outline: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    background-repeat: no-repeat;
    font-size: 16px;
    font-family: Quicksand;
}
*:focus {
    outline: 0 !important;
}

html,
body {
    height: 100vh;
    width: 100vw;
    overflow-y: auto;
}

body {
    background-repeat: no-repeat;
    background-color: #0186c9;
    background-position: top center;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
}
/*body:after {
    content: "";
    width: 100%;
    height: 100%;
    position: fixed;
    background: #02275e;
    left: 0;
    top: 0;
    z-index: 1;
    opacity: 0.85;
}
*/
.login,
.registrarse,
.restablecer-enviar,
.restablecer {
    background: #ecedf1;
    border-radius: 2%;
    position: relative;
    z-index: 2;
    padding: 50px 40px 30px;
    width: 40%;
    max-width: 500px;
}

.login e {
    cursor: pointer;
}

.registrarse,
.restablecer-enviar,
.restablecer {
    display: none;
}

img {
    display: block;
    margin: 0 auto 40px;
    height: 90px;
}
h2 {
    color: #666;
    margin-bottom: 25px;
    font-weight: normal;
    text-align: center;
    font-size: 18px;
}
input {
    padding: 16px 8%;
    border-radius: 30px;
    margin: 0 0 25px;
    width: 100%;
    border: 0;
    color: #666;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type="number"] {
    -moz-appearance: textfield;
}

viewpass {
    position: relative;
    width: 100%;
    display: block;
}
viewpass > svg {
    position: absolute;
    top: 25%;
    right: 5%;
    /* top: 15px;
    right: 8%; */
    transition: 0.2s;
    cursor: pointer;
    fill: #565656;
    opacity: 0.5;
}
viewpass > svg:hover {
    opacity: 1;
}

div > div {
    text-align: center;
    margin: 20px 0 0;
}
div > div > e {
    padding: 0 10px;
    color: #545454;
    cursor: pointer;
}

/* Solo responsivo */
@media only screen and (max-width: 980px) {
    .login,
    .registrarse,
    .restablecer-enviar,
    .restablecer {
        margin: 20px 2%;
        width: 92%;
        padding: 30px 2%;
        border-radius: 20px;
    }
    .registrarse {
        margin-top: 120px;
    }
}

button:disabled,
button[disabled]{
    background-color: #666;
    border-color: #666;
    opacity: .4;
    color: #fff;
}
