/* --- CONFIGURACIÓN GLOBAL DEL CUERPO --- */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    
    /* Estas reglas aseguran que la imagen de fondo se vea bien */
    background-size: cover;       /* Cubre toda la pantalla */
    background-position: center;  /* Centra la imagen */
    background-repeat: no-repeat; /* No repite la imagen */
    background-attachment: fixed; /* La imagen se queda fija (opcional, da un buen efecto) */
}

/* --- CENTRADO DEL FORMULARIO --- */
.group {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 20px;
}

/* --- EFECTO TRASLÚCIDO (GLASSMORPHISM) --- */
.form-container.traslucido {
    /* Fondo blanco con mucha transparencia */
    background: rgba(255, 255, 255, 0.2); 
    padding: 40px;
    border-radius: 15px;
    width: 100%;
    max-width: 400px;
    
    /* DESENFOQUE DEL FONDO (La magia) */
    backdrop-filter: blur(10px); 
    -webkit-backdrop-filter: blur(10px); /* Para Safari */
    
    /* Borde sutil y sombra */
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* --- TEXTOS DENTRO DEL FORMULARIO --- */
/* Título verde Conalep */
.form-container h2 {
    color: #006847;
    text-align: center;
    margin-bottom: 25px;
}

/* Etiquetas en blanco para que resalten sobre fondos oscuros */
.form-container label {
    display: block;
    margin-bottom: 8px;
    color: #ffffff; 
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5); /* Sombra para legibilidad */
}

/* Inputs traslúcidos */
.form-input {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.8); 
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 8px;
    box-sizing: border-box;
}