@font-face {
    font-family: 'Lato'; /* Nombre que le damos a la fuente para usarla en el CSS */
    /* La ruta es relativa desde la ubicación del CSS compilado en la carpeta 'public' */
    src: url('/build/fonts/Lato-Regular.ttf') format('truetype');        
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'GroteskBold';
    /*http://www.onlinewebfonts.com*/
    src: url('/build/fonts/grotesk-bold.ttf') format('truetype');        
    font-weight: 400;
    font-style: bold;
    font-display: swap;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #f4f4f4;
}

.navbar-brand .logo {
    font-weight: 900;
    font-size: 2rem;
    color: #0d6efd; /* Azul corporativo de Sparta */
    text-transform: uppercase;
}

/* .banner {
    width: 100%;
    height: 35vh;
    background-image: url('https://placehold.co/1920x600/343a40/ffffff?text=ENTRENA+SIN+L%C3%8DMITES');
    background-size: cover;
    background-position: center;
} */

.form-container {
    background-color: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    margin-top: -80px;
    position: relative;
    z-index: 10;
}

.form-control {
    border-radius: 4px; /* Menos redondeado */
    padding: 0.5rem 1rem; /* Menos altura */
    border: 1px solid #ced4da;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-control:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.footer {
    background-color: #212529; /* Footer oscuro como en Sparta.cl */
    color: white;
    padding: 2rem 0;
    margin-top: 4rem;
}

.footer a {
    color: #e83e8c;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

.navbar-brand .logo-nav {
    font-weight: 900;
    font-size: 1.5rem;
    color: #0d6efd;
    text-transform: uppercase;
}

.banner {
    width: 100%;
    height: 50vh;
    background-image: url('/build/images/backgrounds/photo-1571019613454-1cb2f99b2d8b.avif');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

@media (min-width: 1920px) {
    
    .banner {
        height: 35vh;
    }

    .footer {
        margin-top: 3.75rem;
    }
}


.banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.banner-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.banner-logo-svg {
    width: 80%;
    max-width: 400px;
    height: auto;
    filter: drop-shadow(2px 2px 8px rgba(0, 0, 0, 0.7));
    margin-bottom: 0.5rem;
}

.banner-slogan {
    font-family: 'Lato'; /* Aplicamos la fuente local con fallbacks */
    font-size: 1.5rem;
    font-weight: 400;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
}

.btn-validar {
    background: #0eabec; /* Rosa/Magenta de Sparta */
    border-color: #1F9DD9;
    font-weight: 700;
    padding: 0.8rem;
    border-radius: 8px;
    text-transform: uppercase;
    transition: background-color 0.2s, border-color 0.2s;
    border: 1px solid #0eabec;
    color: #fff;
    cursor: pointer;
}

.btn-validar:hover {    
    background: #1193ca !important;
    border: 1px solid #1193ca;
    color: #fff !important;
}

#titulo_registro{
    font-family: 'GroteskBold';
    color: #4a4a4a !important;
    letter-spacing: 1px !important;
}