body {
    background: linear-gradient(0deg, #027FFF 0%, rgb(255 255 255 / 60%) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

img#logovao {
    width: 38%;
    margin-top: 82px;
    margin-right: 24px;
}

img#logopedralba {
    width: 51%;
}

.login-container {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
    padding: 40px;
    /* Aumenta el padding para hacer el cuadrado más grande */
    width: 400px;
    /* Aumenta el ancho del contenedor */
}

.login-title {
    text-align: center;
    margin-bottom: 20px;
}

.custom-font {
    font-family: 'Montserrat', sans-serif; /* Aplica la fuente Montserrat */
    font-weight: 700; /* Grosor de la fuente */
    color: #333; /* Cambia el color si es necesario */
    letter-spacing: 1px; 
}

.login-form {
    margin-top: 20px;
}

.btn-login {
    width: 100%;
}

.footer {
    text-align: center;
    padding: 10px;
    background-color: #f0f0f0;
    position: absolute;
    bottom: 0;
    width: 100%;
}

.loader {
    border: 8px solid rgba(255, 255, 255, 0.3);
    border-top: 8px solid #e8ae0d;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 20px auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Estilo adicional para el loader */
.loader:before {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    animation: pulsate 1.5s ease-out;
    opacity: 0;
}

@keyframes pulsate {
    0% { transform: scale(0.1, 0.1); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: scale(1.2, 1.2); opacity: 0; }
}


