﻿body {
    margin: 0;
    padding: 0;
    background-image: url("../img/fondo-log.jpg"); /* ruta corregida */
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffcc00;
    font-family: 'Bebas Neue', sans-serif;
}

.login-box {
    position: absolute;
    top: calc(50% - 200px);
    left: calc(50% - 200px);
    background-color: rgba(0, 0, 0, 0.6);
    padding: 30px;
    border-radius: 15px;
    width: 100%;
    max-width: 400px;
    color: white;
    box-shadow: 0 0 15px rgba(0,0,0,0.5);
}

    .login-box input {
        margin-bottom: 15px;
    }
