﻿
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f9;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-image: url('../images/fondo.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.7);
    z-index: -1;
}
.container {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
    width: 100%;
    max-width: 400px;
}
h1 {
    color: #333;
    margin-bottom: 20px;
    font-size: 24px;
}
form {
    display: flex;
    flex-direction: column;
}
label {
    text-align: left;
    color: #555;
    margin-bottom: 5px;
    font-weight: bold;
}
input {
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}
button {
    background-color: #2563eb;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.2s ease;
}
button:hover {
    background-color: #1d4ed8;
}
.error {
    color: red;
    margin-top: 10px;
    font-size: 14px;
}
@media (max-width: 768px) {
    .container {
        width: 90%;
        padding: 15px;
    }
    h1 {
        font-size: 20px;
    }
    button {
        font-size: 14px;
    }
}
@media (max-width: 480px) {
    .container {
        width: 95%;
        padding: 10px;
    }
    h1 {
        font-size: 18px;
    }
    label, input, button {
        font-size: 14px;
        padding: 8px;
    }
}

/* --- ESTILOS MIGRACIN LOGIN.PHP --- */
.login-logo-container { margin-bottom: 15px; }
.login-logo-img { max-width: 60%; height: auto; margin-bottom: 10px; }
.login-brand-footer { margin: 0; font-size: 10px; color: #666; }
.login-hr { border: none; border-top: 2px solid #004085; margin: 15px 0; }
