* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.landing-container {
    display: flex;
    height: 100vh;
    width: 100%;
}

/* Lado Izquierdo con la foto del árbitro */
.hero-image {
    width: 60%;
    background-image: url('Arbitro.jpg'); /* Asegurate que el nombre coincida exacto */
    background-size: cover;
    background-position: center;
    position: relative;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1); /* Un filtro muy suave para no tapar al árbitro */
}

/* Lado Derecho con el logo y botón */
.login-section {
    width: 40%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    padding: 40px;
}

.content-wrapper {
    text-align: center;
    max-width: 450px;
}

.main-logo {
    width: 180px; /* Ajusté el tamaño para que el logo de URBA se vea imponente */
    margin-bottom: 30px;
}

h1 {
    font-size: 2.5rem;
    color: #1a1a1a;
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 800;
}

.subtitle {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 50px;
}

/* Botón con el azul oscuro de la URBA */
.btn-ingresar {
    display: block;
    background-color: #003366; 
    color: white;
    padding: 20px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    font-size: 1.1rem;
    letter-spacing: 1px;
    transition: background 0.3s ease;
}

.btn-ingresar:hover {
    background-color: #002244;
    transform: translateY(-2px); /* Un pequeño efecto al pasar el mouse */
}

.footer-links {
    margin-top: 80px;
    font-size: 0.75rem;
    color: #aaa;
    letter-spacing: 2px;
}

/* Para que se vea bien en celulares */
@media (max-width: 900px) {
    .landing-container {
        flex-direction: column;
    }
    .hero-image {
        width: 100%;
        height: 40vh;
    }
    .login-section {
        width: 100%;
        height: 60vh;
    }
}