
/***
ESTILO PARA LA PANTALLA DE CARGA
**/

.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #1e90ff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    color: white;
    font-family: Arial, sans-serif;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.content {
    display: none; /* Ocultar hasta que cargue */
}






/*****
ESTILO GENERAL DEL BODY
*****/
/* Reset para evitar márgenes no deseados */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

/* Header fijo en la parte superior */
.header-fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #2401e6;
    color: white;
    padding: 15px 0;
    text-align: center;
    z-index: 1000; /* Para que esté por encima del contenido */
    box-shadow: 3px 5px 3px 3px   rgba(78, 77, 77, 0.5);
    font-weight: bold;
    font-size: 130%;
  
    
}

/* Footer fijo en la parte inferior */
.footer-fixed {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #2401e6;
    color: white;
    padding: 10px 0;
    text-align: center;
    z-index: 1000;
}



/* Contenido principal */
.content {
    display: none;
    padding-top: 70px;
    padding-bottom: 60px;
    min-height: 100vh;
    background-color: #f8f9fa;
}

/* Tarjeta de login */
.login-card {
    margin-top:5%;
    margin-bottom: 50px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border: none;
    width: 100%;
    max-width: 450px;
}

/* Contenedor del logo */
.logo-container {
    position: absolute;
    top: -30px; /* Reduce este valor para que sobresalga menos */
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

/* Estilo del logo */
.header-logo {
    width: 100px; /* Ajusta este valor para hacerla más pequeña */
    height: 100px; /* Mantener igual que el width para proporción cuadrada */
    border-radius: 50%;
    border: 3px solid white; /* Borde más delgado */
    box-shadow: 0 3px 6px rgba(0,0,0,0.1); /* Sombra más sutil */
    object-fit: contain; /* Asegura que la imagen se ajuste manteniendo proporciones */
}

/* Ajuste del espacio en el card-header */
.card-header {
 
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    text-align: center;
    padding-top: 50px !important; /* Reduce este valor según el nuevo tamaño */
}


.login-btn-container {
    display: flex;
    justify-content: flex-end; /* Alinea a la derecha */
    margin-top: 20px;
    cursor: pointer;
}

/* O si prefieres mantener tu estructura actual */
.form-group {
    text-align: right;
}



/*************************
MEDIA QUERY PARA LA VISTA MODO TELEFONO
***************************/

@media only screen and (max-width: 768px) {
  
    .login-card {
    margin-top:25%;
    max-width: 350px;

  }
}

