body, h1, h2, h3, p, ul, li {
    margin: 0;
    padding: 0;
}

/* Estilo para el encabezado */
header {
    background: #051B80;
    box-shadow: 0px 9px 29.3px 19px rgba(0, 0, 0, 0.25);
}

/* Estilo para el logotipo en el encabezado */
.navbar-brand img {
    max-height: 40px; /* Ajusta según el tamaño de tu logotipo */
}

/* Estilo para el contenido de la página */
.container {
    margin-top: 20px;
    width: 80%;
}

/* Estilo para el texto central en la página */
.text-center {
    text-align: center;
}

.header-centro {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.header-center {
    background: #051B80;
    box-shadow: 0px 9px 29.3px 19px rgba(0, 0, 0, 0.25);
}

.logo-header{
    width: 250px;
    height: auto;
    animation: bounceInCenter 1.5s ease-in-out forwards;
}

@keyframes bounceInCenter {
    0% {
        transform: translateX(-250%);
    }
    50% {
        transform: translateX(50%);
    }
    100% {
        transform: translateX(0);
    }
}

.menu-principal a{
    color: #FFF;
    font-family: Fira Sans;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    transition: opacity 0.3s ease;
}

.menu-principal a:hover{
    color: #FFF;
    font-family: Fira Sans;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    opacity: 0.6;
}

.formulario-section{
    padding-top: 2.5rem;
    position: relative;
    padding-bottom: 4.5rem;
}

.fondo{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/fondo-patron.png');
    background-size: cover;
    opacity: 0.2;
    z-index: -1;
    min-height: 100vh;
}

.formulario-section{
    min-height: 100vh;
}

.titulo-principal{
    color: #204290;
    font-family: Fira Sans;
    font-size: 3rem;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
    text-transform: uppercase;
    animation: llegadaYAmpliacion 2s ease-in-out infinite; /* Nombre de la animación, duración, función de temporización, y repetición infinita */
}

@keyframes llegadaYAmpliacion {
    0% {
        transform: scale(1); /* Tamaño original al inicio de la animación */
    }
    50% {
        transform: scale(1.1); /* Tamaño ampliado a la mitad de la animación */
    }
    100% {
        transform: scale(1); /* Vuelve al tamaño original al final de la animación */
    }
}

.titulo-2{
    color: #204290;
    text-align: center;
    font-family: Fira Sans;
    font-size: 2.5rem;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
    animation: llegadaYAmpliacion 2s ease-in-out infinite; 
}

.titulo-p{
    color: #204290;
    text-align: center;
    font-family: Fira Sans;
    font-size: 1rem;
    font-style: italic;
    font-weight: 500;
    line-height: normal;
    animation: llegadaYAmpliacion 2s ease-in-out infinite; 
}

.titulo-p-2 li{
    color: #204290;
    text-align: center;
    font-family: Fira Sans;
    font-size: 1rem;
    font-style: italic;
    font-weight: 500;
    line-height: normal;
    text-align: left;
}

.titulo-2-agradecimiento{
    color: #204290;
    text-align: center;
    font-family: Fira Sans;
    font-size: 2.5rem;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
    animation: llegadaYAmpliacion 2s ease-in-out infinite; 
}

.titulo-p-agradecimiento{
    color: #204290;
    text-align: center;
    font-family: Fira Sans;
    font-size: 1rem;
    font-style: italic;
    font-weight: 500;
    line-height: normal;
    animation: llegadaYAmpliacion 2s ease-in-out infinite; 
}

.dragon-container {
    position: absolute;
    top: -300px;
    right: -100px;
}

.dragoncito {
    width: 652px;
    height: 539px;
    scale: 0.5;
    background-image: url(../images/tv.png);
    background-size: cover;
    animation: vueloDragon 4s ease-in-out infinite;
}

@keyframes saludo {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(100px); /* Mueve hacia arriba a la mitad de la animación */
    }
}

@keyframes vueloDragon {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(100px); /* Mueve hacia la derecha a la mitad de la animación */
    }
}

.form-registro label {
    color: #051B80;
    font-family: Fira Sans;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.form-registro ::placeholder{
    color: #FFF;
    font-family: Fira Sans;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    opacity: 0.6;
}

.form-registro select{
    color: #FFF;
    font-family: Fira Sans;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.form-control{
    border-radius: 10px;
    background: #204290;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    color: #FFF;
    font-family: Fira Sans;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    transition: transform 0.3s ease; 
}

.form-control:hover{
    transform: scale(1.1);
}

.form-control:focus {
    border-radius: 10px;
    background: #204290;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    color: #FFF;
    font-family: Fira Sans;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.boton-form{
    border-radius: 10px;
    background: #F7921E;
    color: #FFF;
    font-family: Fira Sans;
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
    text-transform: uppercase;
    border: none;
    display: flex;
    text-align: center;
    margin: 0 auto;
    transition: transform 0.3s ease; 
}

.boton-form:hover{
    background: #204290;
    transform: scale(1.1);
}

.premios-large img{
    width: 80%;
    padding-top: 2rem;
    animation: llegadaYAmpliacion 2s ease-in-out infinite;
    display: flex;
    margin: 0 auto;
}

footer{
    background: #051B80;
    box-shadow: 9px 9px 29.3px 19px rgba(0, 0, 0, 0.25);
}

footer a{
    color: #FFF;
    font-family: Fira Sans;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    transition: opacity 0.3s ease;
}

footer a:hover{
    color: #FFF;
    font-family: Fira Sans;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    opacity: 0.6;
}

footer p{
    color: #FFF;
    font-family: Fira Sans;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    opacity: 0.6;
}

.btn-ws{
    border-radius: 5px;
    background: #F7921E;
    color: #FFF;
    font-family: Fira Sans;
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
    text-transform: uppercase;
    border: none;
    display: flex;
    text-align: center;
    margin: 20px auto;
    transition: transform 0.3s ease;
    padding: 10px;
}

.btn-ws:hover{
    background: #204290;
    transform: scale(1.1);
}

.btn-excel{
    border-radius: 5px;
    background: #F7921E;
    color: #FFF;
    font-family: Fira Sans;
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
    text-transform: uppercase;
    border: none;
    display: flex;
    text-align: center;
    margin: 20px auto;
    transition: transform 0.3s ease;
    padding: 10px;
    width: 50%;
    display: flex;
    flex-direction: column;
}

.btn-excel a{
    text-align: center;
}

.btn-excel:hover{
    background: #204290;
    color: #fff;
    transform: scale(1.1);
}

.login-control{
    width: 40%;
    border: none;
    margin: 0 auto;
}

.margin-20{
    margin: 20px;
}

.card-admin{
    margin: 0 auto;
}

.table-container {
    overflow-x: auto;
}

table {
    width: 100%;
    white-space: nowrap;
}