body {
    background-color: #232628;
    font-family: Arial, sans-serif;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}
.login-container {
    background-color: white;
    color: #232628;
    padding: 40px 30px 30px;
    border-radius: 12px;
    box-shadow: 0 8px 20px #00000066;
    width: 100%;
    max-width: 380px;
    position: relative;
    animation: fadeIn 0.6s ease-in-out;
    text-align: center;
}
.logo {
    position: absolute;
    top: -50px; /* hace que sobresalga */
    left: 50%;
    transform: translateX(-50%);
    background-color: white; /* para que no se vea cortado */
    padding: 10px;
    border-radius: 50%;
    box-shadow: 0 4px 8px #00000033;
}
.logo img {
    width: 180px;
    height: 110px;
    border-radius: 10%;
    object-fit: cover;
}
.login-title {
    margin-top: 50px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #a10707;
}
.form-control {
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 12px;
    font-size: 14px;
    border: 1px solid #ccc;
}
.btn-login {
    background-color: #074fa1;
    border: none;
    color: white;
    padding: 12px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}
.btn-login:hover {
    background-color: #0d0580;
    color: white;
}
.footer-text {
    margin-top: 15px;
    font-size: 12px;
    color: #555;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}


#loading {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}
/* Contenedor blanco del loader */
.loading-content {
    background: #f3f3f3f1;
    padding: 20px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    text-align: center;
}
.loading-content img {
    width: 250px;
    height: 150px;
}
.loading-content p {
    margin-top: 15px;
    font-weight: bold;
    color: #152c63;
}







/* Contenedor del input con iconos */
.input-icon {
    position: relative;
    width: 100%;
}

/* Input con espacio a la izquierda y derecha para iconos */
.input-icon input {
    width: 100%;
    padding-left: 35px;  /* espacio para el icono izquierdo */
    padding-right: 35px; /* espacio para el icono derecho */
    box-sizing: border-box;
}

/* Icono izquierdo */
.input-icon .icon-left {
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    color: #888;
}

/* Icono derecho (ojito) */
.input-icon .icon-right {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    color: #888;
    cursor: pointer;
}


span.s1 {
    position: absolute;
    top: 0;
    left:0;
    font-size: 15rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #3C4447;
}

span.s2 {
    font-weight: 800;
    position: absolute;
    bottom: 0;
    right: 0;
    font-size: 15rem;
    text-transform: uppercase;
    color: #3C4447;
}

