/* Configuración General */
body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    
    /* NUEVA IMAGEN DE FONDO DESDE URL */
    /* El degradado oscuro ayuda a que el formulario resalte más */
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)), 
                url('https://i.pinimg.com/736x/a0/d1/94/a0d194144b751b3519f283cb82874542.jpg');
    background-size: cover;

    /* Centrado del formulario */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

/* Tarjeta o Contenedor ROJO SANGRE */
.form-container {
    background-color: #8B0000; /* Rojo Sangre Oscuro */
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    width: 90%;
    max-width: 400px;
    text-align: left;
    color: white;
}

/* Título */
h1 {
    text-align: center;
    font-size: 26px;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    color: white;
}

/* Etiquetas (Usuario/Contraseña) */
label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    font-size: 14px;
    color: #e0e0e0;
}

/* Entradas de texto (Inputs) */
.form-input {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 25px;
    border: none;
    border-radius: 10px;
    background-color: white;
    box-sizing: border-box;
    font-size: 16px;
}

/* BOTÓN GRIS OSCURO */
.form-btn {
    width: 100%;
    background-color: #2c2c2c; /* Gris Carbón */
    color: white;
    padding: 15px;
    border: 1px solid #1a1a1a;
    border-radius: 10px;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.form-btn:hover {
    background-color: #454545;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* Enlace de Registro */
.footer-links {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
}

.footer-links a {
    color: #FFD700; /* Dorado para resaltar */
    text-decoration: none;
    font-weight: bold;
}

.footer-links a:hover {
    text-decoration: underline;
}