body {
    margin: 0;
    padding: 0;
    background-color: black;
}

.imagenFondo {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    opacity: 0.25;
    overflow: hidden;
}

.imagenFondo_mobil {
    display: none;
}

.imagenFondo img {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    object-position: center;
    display: block;
}

.container-formulario-eventos {
    /* background-color: rgba(0, 0, 0, 0.75); */
    border-radius: 10px;
    width: 800px;
    /* height: calc(90vh - 20px); */
    margin-left: auto;
    margin-right: auto;
    margin-top: 5vh;
    padding-bottom: 20px;
    /* overflow-y: scroll; */
}

.container-titulo-eventos {
    padding: 20px 0px 0px 0px;
}

.container-titulo-eventos h1 {
  font-style: oblique;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  color: var(--color-one);
  text-align: center;
  text-shadow: 2px 2px 0px black;
  margin-bottom: 10px;
}

.container-titulo-eventos h2 {
  font-style: oblique;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  color: white;
  text-align: center;
  text-shadow: 2px 2px 1px var(--color-two);
  margin-top: 20px;
}

.logo-formulario-eventos {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 150px;
    height: auto;
    margin-top: 10px;
    margin-bottom: 10px;
}

.info-eventos {
    color: white;
    text-align: center;
}

.recomendaciones-eventos {
    color: white;
    /* margin: 20px 40px 0px 40px; */
}

.recomendaciones-eventos li {
    margin: 10px 0px;
}

.formulario-eventos form {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin: 0px 40px 0px 40px;
}

.formulario-eventos-datos {
    display: flex;
    gap: 10px;
    width: 100%;
}

.formulario-eventos-datos > :first-child {
    width: 150%;
}

.formulario-eventos input {
  padding: 5px;
  font-size: large;
  width: calc(100% - 10px);
  border: 2px solid var(--color-two);
}

.formulario-eventos input[type="checkbox"] {
  margin: 10px;
  width: auto;
}

.formulario-eventos p {
    color: white;
    margin-top: 15px;
    margin-bottom: 5px;
}

.btn-agregar-alumno,
.btn-agregar-invitado {
  padding: 10px 15px;
  border-radius: 5px;
  color: white;
  border: 1px solid transparent;
  background-color: var(--color-seven);
  cursor: pointer;
  margin-top: 5px;
}

.separador {
    width: 100%;
    height: 1px;
    background-color: white;
    margin: 10px 0;
}

.container-formulario-eventos table {
    color: white;
    width: 90%;
    border-collapse: collapse;
    margin: 10px 5%;
}

table, td, th {
  border: 1px solid var(--color-four);
}

th, td {
    padding: 2px 15px;
    
}

.container-pago-eventos {
    margin: 0px 40px 0px 40px;
}
.container-pago-eventos p {
    color: white;
    text-align: justify;
}

.container-pago-eventos label {
    color: white;
    text-align: justify;
}

input[type="radio"] {
    cursor: pointer;
}

input[type="radio"]:checked {
    accent-color: red;
}

.reservar-btn-container {
  display: flex;
  justify-content: center;
}

.btn-reservarEvento {
  padding: 15px 0px;
  border-radius: 5px;
  color: black;
  border: 2px solid var(--color-one);
  background-color: var(--color-four);
  font-weight: 800;
  cursor: pointer;
  width: 35%;
  margin-top: 20px;
}

@media screen and (min-width: 1300px) and (max-width: 1600px) {
    .container-formulario-eventos {
        width: 600px;
    }
}

@media screen and (min-width: 1000px) and (max-width: 1300px) {

}

@media screen and (min-width: 600px) and (max-width: 1000px) {
    .imagenFondo {
       display: none;
   }

   .imagenFondo_mobil {
       display: flex;
       justify-content: center;
       align-items: center;
       position: fixed;
       top: 0;
       left: 0;
       width: 100%;
       height: 100%;
       z-index: -1;
       opacity: 0.5;
   }

   .imagenFondo_mobil img {
       height: auto;
       width: 100%;
   }
}

@media screen and (max-width: 600px) {
   .imagenFondo {
       display: none;
   }

   .imagenFondo_mobil {
       display: flex;
       justify-content: center;
       align-items: center;
       position: fixed;
       top: 0;
       left: 0;
       width: 100%;
       height: 100%;
       z-index: -1;
       opacity: 0.5;
   }

   .imagenFondo_mobil img {
       height: 100%;
       width: auto;
   }

   .container-formulario-eventos {
        width: 98vw;
        height: auto;
        overflow: auto;
        margin-top: 1%;
        margin-bottom: 1%;
    }

    .formulario-eventos form {
        margin: 0px 10px 0px 10px;
    }

    .formulario-eventos input {
        width: calc(98% - 10px);
    }

    .container-formulario-eventos table {
        color: white;
        width: 98%;
        max-width: 98%;
        border-collapse: collapse;
        margin: 10px 1%;
    }

    table, td, th {
    border: 1px solid var(--color-four);
    }

    th, td {
        padding: 2px 5px;
    }
}