﻿html {
    background: url('../Images/Universidad_Internacional_SEK_Ecuador.jpg') no-repeat center center fixed;
    background-size: cover;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.inner-login {
    padding: 30px;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.field-adm {
    width: 100%;
    margin-top: 15px;
    padding: 12px 15px 12px 30px;
    font-size: 14px;
    font-weight: 100;
    line-height: 22px;
    border: 1px solid #d8d8d8;
}
.logo {
    width: 204px;
    height: 85px;
    border-radius: 4px;
}
.btn-close {
    border: none;
    position: absolute;
    background: white;
    color: #B4B4B4;
    font-size: 20px;
    cursor: pointer;
    top: 5px;
    right: 10px;
}
.left-text {
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    display: flex;
    flex-direction: column;
    font-size: 24px;
    margin-left: 10px;
    font-family: Calibri;
    font-size: 20px;
    height: 85px;
}
.left-login {
    background-color: rgba(8, 83, 148, .8);
    display: flex; /* Utiliza flexbox */
    align-items: center; /* Centra verticalmente */
    width: 300px;
}
.right-login {
    flex: 2; 
    width: 400px;
    background-color: white
}
.right-login-ex {
    flex: 2;
    background-color: white;
    width:600px;
}
.position-login {
    height: 480px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex; 
    flex-direction: row;
}
.btn-login {
    background-color: rgb(8, 83, 148);
    padding: 15px;
    width: 100%;
    color: #fff;
    margin-top: 30px;
    border:none;
}

/*.form-content {

    transition: transform 0.5s ease-in-out;*/ /* Animación de desplazamiento */
    /*transform: translateX(100%);*/ /* Inicialmente oculto */
/*}*/

/*.slide-left {
    transform: translateX(-100%);*/ /* Desplazar el panel hacia la izquierda */
/*}*/
.overlay {
    display: none; /* Oculto por defecto */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Fondo semitransparente */
    z-index: 9999; /* Asegurarse de que esté por encima de otros elementos */
}
.loader {
     position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    border: 5px solid #f3f3f3;
    border-radius: 50%;
    border-top: 5px solid #3498db;
    animation: spin 1s linear infinite;
}
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
.loader-text {
    position: absolute;
    top: calc(50% + 50px); /* Ajusta la posición vertical según el tamaño del loader */
    left: 40%;
    color: #fff; /* Color del texto */
    font-size: 16px; /* Tamaño del texto */
    text-align: center; /* Centra el texto horizontalmente */
}

/*.loader {
    display: block;*/ /* Oculto por defecto */
    /*position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    border: 5px solid #f3f3f3;
    border-radius: 50%;
    border-top: 5px solid #3498db;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}*/
.password-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
}

    .password-wrapper input {
        width: 100%;
        padding-right: 40px; /* espacio para el icono */
    }

    .password-wrapper .toggle-password {
        position: absolute;
        right: 12px;
        top: 50%;
        cursor: pointer;
        font-size: 14px;
        color: #666;
        transition: color 0.3s ease;
    }

        .password-wrapper .toggle-password:hover {
            color: #000; /* se oscurece al pasar el mouse */
        }