body {
    background-color: black; /* Negro */
    color: white; /* Blanco */
    font-family: 'Arial', sans-serif;
    padding: 20px;
}

.video_fondo{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.form-champions {
    background-color: #00336671; /* Azul */
    border: 3px solid #FFD700; /* Amarillo */
    padding: 20px;
    max-width: 500px;
    margin: auto;
}

h2 {
    color: #FFD700;
    text-align: center;
    text-transform: uppercase;
}

fieldset {
    border: 2px solid #FFD700;
    margin-bottom: 15px;
    padding: 10px;
}

legend {
    color: #FFD700;
    font-weight: bold;
}

label, p {
    font-size: 14px;
    margin-top: 5px;
} 

input[type="text"], input[type="email"], select, textarea {
    width: 90%;
    margin-bottom: 10px;
    border: 1px solid #000;
}

input[type="submit"] {
    background-color: #FFD700;
    color: #000;
    font-weight: bold;
    width: 100%;
    padding: 10px;
    cursor: pointer;
}

#volver {
    
    bottom: 30px;    
    right: 30px;     
    
   
    width: 100px;    
    height: 100px;   
    border-radius: 50%; 
    
    
    
    border: 2px solid rgba(255, 255, 255, 0.5);
    
    
    display: flex;
    justify-content: center; /* Centra horizontalmente */
    align-items: center;     /* Centra verticalmente */
    text-align: center;      /* me asegura que las palabras se alineen al medio */
    
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    padding: 10px; /* Un poco de espacio interno para que el texto no toque los bordes */

    /* 7. TU EFECTO DE RESPLANDOR (Mantenemos tu sombra) */
    box-shadow: 0px 0px 20px rgba(30, 11, 202, 0.8);
    
    /* 8. CURSOR */
    cursor: pointer;
}

a{
    text-decoration: none;
    margin: 2em;
}