﻿html, body, div {
    padding: 0;
    margin: 0;
    font-size: 100%;
    font-weight: normal;
    /*background: #E5F4FB;*/
}

img {
    border:0;
}

.imgLogin {
    background-color:#fff;
    width:150px;
    height:150px;
    border-radius:50%;
    overflow:hidden;
    margin: 0 auto;
}

.imgLogin img {
    position:center;
    width:150px;
    height:150px;
}

p {
    /*font-family: Arial;
    font-weight: bold;*/
    text-align: center;
    padding: 20px;
    font-size: 40px;
    color: #fff;
}

.registro {
    margin: 0 auto;
    width:50%;
    position: relative;
}

.inputRegistro {
    font-family: Montserrat-Bold;
    /*font-weight: 100;*/
    font-size: 25px;
    line-height: 1.2;
    color: #002C5F;
    display: block;
    width: 100%;
    background: #fff;
    height: 50px;
    /*border: 1px solid #B1B1B1;*/
    border-radius: 25px;
    padding: 0 30px 0 53px;
    padding-right: 68px;
    margin: 20px 0;
}

.registro .glyphicon {
    position: absolute;
    padding: 15px 25px;
    pointer-events: none;
    color:#777;
}

.botonRegistro {
    font-family: Montserrat-Bold;
    /*font-weight: bold;*/
    font-size: 25px;
    line-height: 1.2;
    color: #fff;
    display: block;
    width: 100%;
    background: #17A2B8;
    height: 50px;
    border: 2px solid;
    border-radius: 25px;
    padding: 0;
    margin: 20px 0;
}

    .botonRegistro:hover {
        font-family: Montserrat-Bold;
        font-size: 25px;
        line-height: 1.2;
        color: #00c5ee;
        display: block;
        width: 100%;
        background: #002C5F;
        height: 50px;
        border: 3px solid;
        border-radius: 25px;
        padding: 0 2px 0 2px;
        margin: 20px 0;
    }

.registroBoton {
    margin: 0 auto;
    width: 50%;
    position: relative;
}
 
.registroBoton .glyphicon {
    position: absolute;
    padding: 12px 25px;
    pointer-events: none;
    font-size:27px;
    color: #fff;
}

a {
    /*font-family: Arial;
    font-weight: 100;*/
    font-size: 20px;
    color: #fff;
}

a:hover {
    color: #ffffff;
}

@media(max-width:600px) {
    .registro {
        margin: 0 auto;
        width: 80%;
        position: relative;
    }

    .registroBoton {
        margin: 0 auto;
        width: 80%;
        position: relative;
    }
}

/*redload-------------*/
.centrado {
    height: 50vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lds-spinner {
    color: official;
    display: inline-block;
    position: relative;
    width: 64px;
    height: 64px;
}

.lds-spinner div {
    transform-origin: 32px 32px;
    animation: lds-spinner 1.2s linear infinite;
}

.lds-spinner div:after {
    content: " ";
    display: block;
    position: absolute;
    top: 3px;
    left: 29px;
    width: 5px;
    height: 14px;
    border-radius: 20%;
    background: #000;
}

.lds-spinner div:nth-child(1) {
    transform: rotate(0deg);
    animation-delay: -1.1s;
}

.lds-spinner div:nth-child(2) {
    transform: rotate(30deg);
    animation-delay: -1s;
}

.lds-spinner div:nth-child(3) {
    transform: rotate(60deg);
    animation-delay: -0.9s;
}

.lds-spinner div:nth-child(4) {
    transform: rotate(90deg);
    animation-delay: -0.8s;
}

.lds-spinner div:nth-child(5) {
   transform: rotate(120deg);
   animation-delay: -0.7s;
}

.lds-spinner div:nth-child(6) {
    transform: rotate(150deg);
    animation-delay: -0.6s;
}

.lds-spinner div:nth-child(7) {
    transform: rotate(180deg);
    animation-delay: -0.5s;
}

.lds-spinner div:nth-child(8) {
    transform: rotate(210deg);
    animation-delay: -0.4s;
}

.lds-spinner div:nth-child(9) {
    transform: rotate(240deg);
    animation-delay: -0.3s;
}

.lds-spinner div:nth-child(10) {
    transform: rotate(270deg);
    animation-delay: -0.2s;
}

.lds-spinner div:nth-child(11) {
    transform: rotate(300deg);
    animation-delay: -0.1s;
}

.lds-spinner div:nth-child(12) {
    transform: rotate(330deg);
    animation-delay: 0s;
}

@keyframes lds-spinner {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

/* Ocultar el botón nativo de revelar contraseña en Edge/IE */
input[type="password"]::-ms-reveal {
    display: none;
}

.toggle-password {
    position: absolute;
    right: 18px; 
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: transparent;
    width: 36px; 
    height: 36px;
    padding: 0;
    cursor: pointer;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #666;
    z-index: 2; 
}

    .toggle-password:hover {
        color: #333;
    }

    .toggle-password:focus {
        outline: 2px solid #4d90fe;
        outline-offset: 2px;
        border-radius: 8px;
    }

    .toggle-password .glyphicon,
    .toggle-password .glyphicon::before,
    .toggle-password .icon-eye,
    .toggle-password .icon-eye::before,
    .toggle-password .icon-eye-blocked,
    .toggle-password .icon-eye-blocked::before {
        font-size: 22px; 
        line-height: 1;
        display: inline-block;
    }