﻿body {
    background-image: url('../imagenes/background-login.jpg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.card {
    background-color: rgba(255, 255, 255, 0.85);
    border-radius: 1rem;
}

input.form-control, button.btn {
    border-radius: 0.5rem;
}

.perfil-img {
    width: 40px;
    height: 40px;
    object-fit: cover;
}

#loading-screen {
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9); /* Fondo semi-transparente */
    top: 0;
    left: 0;
    z-index: 1050; /* Más alto que otros elementos */
    display: flex;
    justify-content: center;
    align-items: center;
    display: none; /* Oculto por defecto */
}

/* Centrado del contenedor principal */
.login-wrapper {
    min-height: 93vh; /* Bajamos de 99vh a 85vh para dejar espacio al footer */
    display: flex;
    align-items: center;
    justify-content: center;
}
 