/* RESET BÁSICO */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

/* FONDO GENERAL */
body {
    height: 100vh;
    background: linear-gradient(135deg, #5a0f1a, #8b1e2d);
    display: flex;
    justify-content: center;
    align-items: center;
}

/* CONTENEDOR DEL LOGIN */
.login-container {
    width: 360px;
    background-color: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

/* CABECERA (LOGO) */
.login-header {
    background-color: #5a0f1a;
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ESPACIO PARA LOGO */
.login-header img {
    max-height: 80px;
}

/* CUERPO */
.login-body {
    padding: 30px;
}

/* TÍTULO */
.login-body h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #5a0f1a;
}

/* INPUTS */
.login-body input {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
}

/* BOTÓN */
.login-body button {
    width: 100%;
    padding: 12px;
    background-color: #8b1e2d;
    border: none;
    border-radius: 5px;
    color: #ffffff;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.login-body button:hover {
    background-color: #5a0f1a;
}

/* MENSAJE ERROR */
.error {
    color: #b00020;
    text-align: center;
    margin-bottom: 15px;
    font-size: 14px;
}

