@import url("https://fonts.googleapis.com/css2?family=Manrope&display=swap");
.type-man {
  font-family: "Manrope", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
.type-man.type-light {
  font-weight: 300;
}
.type-man.type-medium {
  font-weight: 500;
}
.type-man.type-semi {
  font-weight: 600;
}
.type-man.type-bold {
  font-weight: 700;
}
.type-man.type-extra {
  font-weight: 800;
}

html,
body {
  height: 100%;
  margin: 0;
}

.bg-container {
  position: relative;
  background-image: url("background_web.jpg");
  background-size: cover;
  background-position: center;
  height: 100vh;
}

.bg-container::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(119, 119, 119, 0.5);
  mix-blend-mode: multiply;
}

/* Contenido centrado */
.content {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1rem;
}

.holderForm {
  color: #fff;
  max-width: 520px;
  padding: 50px 10px;
  min-width: 520px;
}
.holderForm .countrySelector {
  cursor: pointer;
  box-sizing: border-box;
  height: 50px;
  color: #000;
  font-size: 11px;
  padding-right: 20px;
}
.holderForm .countrySelector .background {
  padding: 0 20px;
  border: 1px solid #000;
  border-radius: 5px;
  background-color: #fff;
}
.holderForm .countrySelector .arrow {
  outline: none;
  transform: rotate(180deg);
  transform-origin: center;
  transition: transform 0.3s ease;
  transform-origin: center;
}
.holderForm .countrySelector .arrow:focus {
  outline: none;
}
.holderForm .countrySelector.active .arrow {
  transform: rotate(0deg);
}
.holderForm .countrySelector .modalCountrys {
  box-sizing: border-box;
  position: absolute;
  top: 55px;
  left: 0px;
  width: 100%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.holderForm .countrySelector .modalCountrys.show {
  opacity: 1;
  pointer-events: auto;
}
.holderForm .countrySelector .modalCountrys .inner {
  border: 1px solid #000;
  border-radius: 5px;
  background-color: #fff;
  margin-right: 20px;
}
.holderForm .countrySelector .modalCountrys ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.holderForm .countrySelector .modalCountrys ul li {
  padding-left: 20px;
  font-size: 11px;
  display: block;
  line-height: 50px;
}
.holderForm .countrySelector .modalCountrys ul li:not(:last-child) {
  border-bottom: 1px solid #CDCDCD;
}
.holderForm .countrySelector .modalCountrys ul li:hover {
  background-color: #000;
  font-weight: 600;
  color: #fff;
}
.holderForm .rememberSelection {
  cursor: pointer;
  box-sizing: border-box;
  height: 50px;
  color: #000;
  font-size: 11px;
  padding-right: 20px;
}
.holderForm .rememberSelection .background {
  padding: 0 20px;
  border: 1px solid #000;
  border-radius: 5px;
  background-color: #fff;
}
.holderForm .rememberSelection .inner {
  border: 1px solid #000;
  border-radius: 2px;
  background-color: #fff;
  width: 17px;
  height: 17px;
}
.holderForm .rememberSelection .inner.checked {
  background: url('data:image/svg+xml,<svg width="9" height="7" viewBox="0 0 9 7" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1 3.72L3.26667 6.1L7.8 1" stroke="white" stroke-width="1.275" stroke-linecap="round" stroke-linejoin="round"/></svg>') no-repeat center;
  background-size: 9px 7px;
  background-color: #000;
}
.holderForm .button {
  width: 60px;
  height: 50px;
  cursor: pointer;
  font-size: 12px;
}
.holderForm .button .inner {
  color: #fff;
  border: 1px solid #000;
  border-radius: 5px;
  background-color: #000;
}
.holderForm .button .inner.inactive {
  color: #000 !important;
  background-color: #fff !important;
  cursor: default;
}
.holderForm .button .inner.inactive:hover {
  border: 1px solid #000;
}
.holderForm .button .inner:active, .holderForm .button .inner:hover {
  background-color: #000;
  color: #fff;
  border: 1px solid #fff;
}

@media (max-width: 520px) {
  .bg-container {
    background-image: url("background_mob.jpg");
  }
  .holderForm {
    box-sizing: border-box;
    min-width: auto;
    width: 90%;
  }
  .holderForm .d-flex {
    align-items: stretch;
    flex-wrap: wrap;
  }
  .holderForm .countrySelector {
    font-size: 12px;
  }
  .holderForm .countrySelector .modalCountrys .inner {
    margin-right: 0px;
  }
  .holderForm .countrySelector .modalCountrys ul li {
    font-size: 12px;
  }
  .countrySelector,
  .rememberSelection,
  .button {
    width: 100% !important;
    max-width: 100%;
    padding-right: 0 !important;
    margin-bottom: 5px !important;
  }
  .countrySelector,
  .rememberSelection,
  .button {
    margin: 0;
    padding: 0;
    border-radius: 0;
  }
  .button .inner {
    width: 100%;
  }
  .holderForm > .d-flex > .d-flex {
    flex-direction: column;
    width: 100%;
  }
}/*# sourceMappingURL=estilos.css.map */