/* 🔹 Contenedor principal del login */
.login-page {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background:  no-repeat center center/cover;
    position: relative;
}

/* 🔹 Capa de superposición para mejorar el contraste */
.login-page::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;    
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Aumenta el contraste */
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    z-index: 0; /* Asegura que la capa de fondo no cubra el login */
}

/* 🔹 Caja del formulario de login */
.login-container {
    position: relative;
    background: rgba(255, 255, 255, 0.2);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
    width: 380px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    z-index: 1; /* Asegura que el formulario esté sobre la capa oscura */
}

/* 🔹 Estilo del título */
.login-container h2 {
    color: white;
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

/* 🔹 Inputs */
.login-container input {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease-in-out;
}

/* 🔹 Efecto en inputs al enfocar */
.login-container input:focus {
    background: rgba(255, 255, 255, 0.3);
    border-color: white;
}

/* 🔹 Botón de inicio de sesión */
.btn-login {
    width: 100%;
    padding: 12px;
    background: #007bff;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    color: white;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

/* 🔹 Efecto hover del botón */
.btn-login:hover {
    background: #0056b3;
    transform: scale(1.05);
}

/* 🔹 Estilos para el formulario */
.form-group {
    text-align: left;
    margin-bottom: 15px;
}

/* 🔹 Estilos para las etiquetas */
.form-group label {
    display: block;
    font-size: 1rem;
    font-weight: bold;
    color: white;
    margin-bottom: 5px;
}