* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  background: linear-gradient(to top, #66c2ff 60%, #ffffff);
  font-family: "Open Sans", sans-serif;
  display: block;
  height: 100vh;
  position: relative;
}

.main_contenido {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 100vh;
  display: grid;
  place-items: center;
}

.titulo_inicio {
  width: 100%;
  padding: 5px 15px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.titulo_inicio h1 {
  text-align: center;
  font-size: 40px;
  color: rgb(20, 0, 121);
  text-shadow: 3px 3px 20px rgba(255, 255, 255, 1);
}

.titulo_inicio p {
  text-align: center;
  color: #ffffff;
  font-weight: bolder;
  font-size: 35px;
  text-shadow: 3px 3px 20px rgb(102, 129, 236);
}

.card_registro {
  /* background: linear-gradient(to top, #ffffff, #97d5ff 50%); */
  background-color: transparent;
  padding: 15px;
  border-radius: 20px;
  /* box-shadow: 0 1px 50px rgba(0, 0, 0, 0.3);
  /* From https://css.glass */
  background: rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(12.7px);
  -webkit-backdrop-filter: blur(12.7px);
  border: 1px solid rgba(255, 255, 255, 0.67);
  position: relative;
  margin-left: 5px;
  margin-right: 5px;
  width: 700px;
}

.card_header {
  padding: 40px;
}

.boton_inicio {
  color: rgb(11, 88, 255);
  text-decoration: none;
  position: absolute;
  right: 15px;
  top: 15px;
}

.parrafo_inicio {
  text-align: center;
  font-size: 30px;
}

.input_rut {
  width: 100%;
  outline: none;
  font-size: 30px;
  text-align: center;
  padding: 30px;
  border-radius: 15px;
  border: 2px solid rgba(255, 255, 255, 0.67);
}

.entrada {
  margin-top: 10px;
  background: #0b58ffad;
  width: 100%;
  padding: 35px;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  border-radius: 15px; /* Ajusta el radio del borde para redondear las esquinas */
  transition: background-color 0.3s, color 0.3s; /* Añade una transición para suavizar los cambios de color al pasar por encima */
  text-transform: uppercase;
  font-size: 22px;
  border: 2px solid rgba(255, 255, 255, 0.67);
}
.entrada:hover {
  background-color: #283593;
}
.salida {
  cursor: pointer;
  margin-top: 10px;
  background: rgb(100 159 82 / 84%);
  width: 100%;
  padding: 35px;
  color: #fff;
  font-size: 20px;
  border-radius: 15px; /* Ajusta el radio del borde para redondear las esquinas */ /* Ajusta el espacio interno del botón */
  transition: background-color 0.3s, color 0.3s;
  text-transform: uppercase;
  font-size: 22px;
  border: 2px solid rgba(255, 255, 255, 0.67);
}
.salida:hover {
  background-color: rgb(5, 90, 3);
}

.div_button {
  display: flex;
  padding-bottom: 70px;
  padding-top: 50px;
  gap: 10px;
}

@media screen and (max-width: 550px) {
  .card_registro {
    width: 380px;
  }
}

@media screen and (min-width: 550px) and (max-width: 768px) {
  .card_registro {
    width: 500px;
  }
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.video-container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.dark-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.1);
}

.swal2-image {
  border-radius: 50%;
}

