body {
    font-family: 'League Spartan', sans-serif;
    background-image: url('imgs/fondo1.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center; 
    align-items: center;    
    min-height: 100vh;
}

.login-box {
    background: rgba(255, 255, 255, 0.95); 
    padding: 60px 50px; 
    border-radius: 20px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    width: 400px; 
    max-width: 90%; 
    display: flex;
    flex-direction: column;  
    align-items: center;     
    text-align: center;
}

.login-box h2 {
    margin-bottom: 30px;
    color: #83181C;
    font-size: 32px; 
    font-weight: 700;
}

.login-box input {
    width: 80%;              
    max-width: 350px;     
    padding: 15px;
    margin: 10px 0;         
    border-radius: 12px;
    border: 1px solid #ccc;
    font-size: 16px;
    box-sizing: border-box;
}

.login-box button {
    width: 80%;              
    max-width: 350px;
    padding: 15px;
    margin-top: 15px;
    border-radius: 12px;
    border: none;
    background-color: #83181C;
    color: white;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
}

.login-box button:hover {
    background-color: #a02a32;
}

.error {
    color: red;
    font-size: 16px;
    margin-top: 15px;
    font-weight: 500;
}
