/* Estilo General */
body {
    background: linear-gradient(135deg, #e3f2fd, #bbdefb); /* Tonos azules más suaves */
    font-family: 'Arial', sans-serif;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

/* Contenedor del Login */
.login-container {
    background: #ffffff;
    border-radius: 25px; /* Bordes más redondeados */
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    padding: 50px;
    max-width: 420px;
    width: 100%;
    animation: fadeIn 1s ease-in-out;
    text-align: center; /* Centrar contenido */
}

.login-container h2 {
    font-size: 2rem;
    font-weight: bold;
    color: #004085; /* Azul fuerte */
    text-align: center;
    margin-bottom: 30px;
}

/* Inputs y Selects */
.form-control,
.form-select {
    border-radius: 20px;
    padding: 12px 15px;
    font-size: 1rem;
    border: 1px solid #b3d7ff; /* Azul claro */
    box-shadow: inset 0 3px 6px rgba(0, 0, 0, 0.1); /* Sombra interna */
    transition: all 0.3s ease-in-out;
}

.form-control:focus,
.form-select:focus {
    border-color: #007bff; /* Azul brillante */
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
    outline: none;
}

/* Botón Principal */
.glowing-button {
    font-size: 1rem;
    font-weight: bold;
    border-radius: 30px; /* Más redondeado */
    color: #fff;
    padding: 15px 30px;
    text-align: center;
    width: 100%;
    border: none;
    outline: none;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    background: #0056b3; /* Azul fuerte */
    box-shadow: 0 8px 15px rgba(0, 86, 179, 0.3); /* Efecto de sombra */
}

.glowing-button:hover {
    background: #007bff; /* Azul brillante */
    box-shadow: 0 15px 25px rgba(0, 123, 255, 0.5); /* Sombra más intensa */
    transform: translateY(-2px); /* Elevar */
}

.glowing-button:active {
    background: #004085; /* Azul oscuro */
    box-shadow: inset 0 4px 8px rgba(0, 0, 0, 0.2); /* Sombra interna */
    transform: translateY(2px); /* Hundir */
}

/* Botón Secundario */
.btn-secondary {
    background: #6c757d;
    border: none;
    border-radius: 30px; /* Más redondeado */
    padding: 12px 20px;
    color: #fff;
    transition: all 0.3s ease-in-out;
}

.btn-secondary:hover {
    background: #5a6268;
    transform: translateY(-2px); /* Elevar */
}

/* Logo */
.logo {
    width: 100%;
    max-width: 180px;
    margin: 0 auto 25px;
    display: block;
    animation: bounceIn 1s;
}

/* Texto centrado */
.text-center {
    text-align: center;
}

/* Animaciones */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    60% {
        opacity: 1;
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}
