@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&display=swap");
body {
  margin: 0px;
  padding: 0px;
  background: #30477d url(./img/bg-fondo.jpg) no-repeat center center fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  font-family: "Open Sans", sans-serif;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield;
}
header {
  background: #a2aac5;
  text-align: center;
}

header img {
  width: 120px;
}

section {
  max-width: 500px;
  width: 95%;
  margin: auto;
  margin-top: 40px;
}
section h2 {
  text-align: center;
  color: white;
  font-size: 20px;
  font-weight: 400;
}

form {
  background: #fff;
  -webkit-box-shadow: 0px 0px 20px 1px rgb(0 0 0 / 75%);
  -moz-box-shadow: 0px 0px 20px 1px rgba(0, 0, 0, 0.75);
  box-shadow: 0px 0px 20px 1px rgb(0 0 0 / 75%);
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  padding: 5%;
}
form input {
  width: 100%;
  text-align: center;
  height: 40px;
  border-radius: 5px;
  border: solid 1px gray;
  font-weight: 600;
  margin-top: 10px;
  font-size: 15px;
  color: #001a71;
}
form label {
  font-size: 15px;
  color: #001a71;
}
form button {
  margin-top: 15px;
  color: white;
  height: 50px;
  width: 130px;
  font-size: 15px;
  cursor: pointer;
  border: none;
  background-color: #001a71;
}

.descripcion {
  font-size: 10.5px;
    margin-top: 55px;
  color: white;
}

/*loader*/
.contenedor_loader {
  position: fixed;
    position: absolute;
  width: 100%;
  height: 100vh;
  background-color: #ffffff;  z-index: 99;

}
.loader {
  width: 250px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-transform: uppercase;
  font-weight: 900;
  color: #4d5e92;
  letter-spacing: 0.2em;

}
.loader::before,
.loader::after {
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  background: #4d5e92;
  position: absolute;
  animation: load 0.7s infinite alternate ease-in-out;
}
.loader::before {
  top: 0;
}
.loader::after {
  bottom: 0;
}
@keyframes load {
  0% {
    left: 0;
    height: 30px;
    width: 15px;
  }
  50% {
    height: 8px;
    width: 40px;
  }
  100% {
    left: 235px;
    height: 30px;
    width: 15px;
  }
}



.swal2-content{
  font-family: "Open Sans", sans-serif !important;
  font-weight: 500;
}

.swal2-confirm{
  font-family: "Open Sans", sans-serif !important;
  font-weight: 600;
}







.bg-fondo {
  position: absolute;
  position: fixed;
  background-color: rgba(0, 0, 0, 0.808);
  height: 100vh;
z-index: 9;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}



.error_mensaje {
  display: flex;
  align-items: center;
  color: red;
  font-weight: 600;
  grid-gap: 10px;
  text-transform: uppercase;
  font-size: 13px;
}

.error_mensaje svg {
  height: 25px;
}

.pupop_ {
  position: absolute;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-height: 200px;
  max-width: 375px;
  width: 95%;
  background-color: white;
  z-index: 999;
  padding: 20px;
  border-radius: 5px;
  display: none;
}

.pupop_ input {
  width: 100%;
  text-indent: 10px;
  border-radius: 5px;
  font-size: 15.4px;
  border: solid 1px rgba(128, 128, 128, 0.5);
  outline: none;
  height: 50px;
  margin-top: 15px;
}
.pupop_ button {
  border-radius: 50px;
  border: none;
  color: white;
  margin-top: 15px;
  cursor: pointer;
  padding: 30px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #4d5e92;
}




#loadera{
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2.5px solid #dcefff;
  border-top: 2.5px solid #4d5e92;
  animation: rotate 2s infinite ease;
}
@keyframes rotate{
  0%{
    transform: none;
  }
 100%{
   transform: rotate(1turn);
   
}
}