/* Estilos para la página de Login */

.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.login-box {
    background-color: #000;
    border: 2px solid #fff;
    border-radius: 10px;
    padding: 40px;
    max-width: 400px;
    width: 100%;
}

.login-box h1 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2em;
}

.login-box h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.3em;
}

.login-box label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.login-box input {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    background-color: #111;
    border: 1px solid #444;
    color: #fff;
    border-radius: 5px;
    font-size: 1em;
}

.login-box input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.login-box button {
    width: 100%;
    padding: 12px;
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

.login-box button:hover {
    background-color: #b30c0c;
}

.error-msg {
    background-color: #ff4444;
    color: #fff;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: bold;
}

.back-link {
    text-align: center;
    margin-top: 20px;
}

.back-link a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.back-link a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}
