@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}
html,body{

  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
  font-size: 62.5%;

  background-image: url(../img/lp-img/login-signup/background.jpg);
  background-size: cover;
  background-position: center;

}
::selection{
  background: #1a75ff;
  color: #fff;
}

.wrapper{
  overflow: hidden;
  background: transparent;
  padding: 24px 0px;
  background: -webkit-linear-gradient(left,#1A2229,#101920);
}
.wrapper .title-text{
  display: flex;
  color: #fff;
  padding: 20px 0px;
}

.wrapper .title{
  width: 100%;
  font-size: 2rem;
  font-weight: 500;
  text-align: center;
  transition: all 0.6s cubic-bezier(0.68,-0.55,0.265,1.55);
  text-align: center;
}
.wrapper .slide-controls{
  position: relative;
  display: flex;
  height: 50px;
  width: 100%;
  overflow: hidden;
  justify-content: space-between;
  border-radius: 12px;
  border: 1px solid #393939;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.10) 0%, rgba(255, 255, 255, 0.06) 100%);
}
.slide-controls .slide{
  height: 100%;
  width: 100%;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  line-height: 48px;
  cursor: pointer;
  z-index: 1;
  transition: all 0.6s ease;
}
.slide-controls label.signup{
  color: #000;
}
.slide-controls .slider-tab{
  position: absolute;
  height: 100%;
  width: 50%;
  left: 0;
  z-index: 0;
  border-radius: 12px;
  background: -webkit-linear-gradient(0deg, #1C49C4 0%, #14285C 100%);
  transition: all 0.6s cubic-bezier(0.68,-0.55,0.265,1.55);
}
input[type="radio"]{
  display: none;
}
input[type="date"] {
  position: relative;
}

input[type="date"]::-webkit-calendar-picker-indicator {
  opacity: 1; /* Oculta el icono del calendario en navegadores basados en WebKit */
  cursor: pointer;
}

input[type="date"] {
    background: url(../img/lp-img/login-signup/calendar.svg);
    background-size: 20px;
    background-position: right 10px center;
    position: relative;
    padding-right: 10px !important;
    cursor: text;
}

.custom-date-container {
  position: relative;
  display: flex;
  align-items: center;
}

.custom-date-icon {
  position: absolute;
  right: 10px; 
  width: 20px;  
  height: 20px; 
  cursor: pointer;
  pointer-events: none;
}
#signup:checked ~ .slider-tab{
  left: 50%;
}
#signup:checked ~ label.signup{
  color: #fff;
  cursor: default;
  user-select: none;
}
#signup:checked ~ label.login{
  color: #fff;
}
#login:checked ~ label.signup{
  color: #fff;
}
#login:checked ~ label.login{
  cursor: default;
  user-select: none;
}
.wrapper .form-container{
  width: 100%;
  overflow: hidden;
  min-height: 700px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.form-container .form-inner{
  display: flex;
  width: 200%;
}
.form-container .form-inner form{
  width: 50%;
  transition: all 0.6s cubic-bezier(0.68,-0.55,0.265,1.55);
}

.form-inner form .field{
  height: auto;
  width: 100%;
  margin-top: 20px;
  padding: 0px;
}
.form-inner form .btn{
  margin-top: 30px;
}
.form-inner form .form-label  {
    color: #fff;
    font-size: 1.2rem;
}
.form-inner form .field input{
  height: 100%;
  width: 100%;
  outline: none;
  padding: 10px 20px;
  border-radius: 10px;
  border: 1px solid #ffffff1a;
  border-bottom-width: 2px;
  font-size: 1.4rem;
  transition: all 0.3s ease;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.10) 0%, rgba(255, 255, 255, 0.06) 100%) ;
  font-weight: 200;
  color: #fff;

}

.form-inner form .field input:focus{
  border-color: transparent;
  /* box-shadow: inset 0 0 3px #fb6aae; */
}
.form-inner form .field input::placeholder{
  color: #fff;
  transition: all 0.3s ease;
}
form .field input:focus::placeholder{
  color: #fff;
}
.form-inner form .pass-link{
    margin-top: 5px;
    font-size: 16px;
    text-decoration: none;
    cursor: pointer;
}
.form-inner form #btn-continue{
  height: 100%;
  width: 100%;
  z-index: 1;
  position: relative;
  background: none;
  border: none;
  color: #fff;
  padding-left: 0;
  border-radius: 15px;
  font-size: 20px;
  font-weight: 500;
  cursor: pointer;
  background: -webkit-linear-gradient(0deg, #1C49C4 0%, #14285C 100%);
  text-transform: uppercase;

}
.form-inner form #btn-continue:hover{
  background: #8299ff;
}
.form-inner form .signup-link{
  text-align: center;
  margin-top: 30px;
  font-size: 1.4rem;
  color: #fff;
}
.form-inner form .pass-link a,
.form-inner form .signup-link a{
  color: #1a75ff;
  text-decoration: none;
  font-size: 1.4rem;
  cursor: pointer;
}
.form-inner form .pass-link a:hover,
.form-inner form .signup-link a:hover{
  text-decoration: underline;
}
form .btn{
  height: 50px;
  width: 100%;
  border-radius: 15px;
  position: relative;
  overflow: hidden;
}
form .btn .btn-layer{
  height: 100%;
  width: 300%;
  position: absolute;
  left: -100%;
  background: -webkit-linear-gradient(0deg, #1C49C4 0%, #14285C 100%);
  border-radius: 15px;
  transition: all 0.4s ease;;
}
form .btn:hover .btn-layer{
  left: 0;
}
form .btn input[type="submit"]{
  height: 100%;
  width: 100%;
  z-index: 1;
  position: relative;
  background: none;
  border: none;
  color: #fff;
  padding-left: 0;
  border-radius: 15px;
  font-size: 20px;
  font-weight: 500;
  cursor: pointer;
  background: -webkit-linear-gradient(0deg, #579118 0%, #084807 100%);
  text-transform: uppercase;

}
form .btn input[type="submit"]:hover{
  background: #579118;
}

.iti {
  width: 100%;
}
.signup-step {
  transition: all .3s ease;
}

.passwordWrapp {
  position: relative;
}

.passwordWrapp span.activeShow::after {
  position: absolute;
  content: "";
  left: -2px;
  top: 52%;
  width: 30px;
  height: 2px;
  background-color: #6a6a6a;
  transform: rotate(-40deg) translateY(-50%);
}

.custom-tooltip {
  position: absolute;
  background-color: #fff;
  color: #000;
  padding: 8px 12px;
  font-size: 0.8rem;
  border-radius: 4px;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
  z-index: 10;
  white-space: pre-wrap;
  top: 100%; 
  left: 0;
  transform: translateY(0px);
  display: inline-block;
  font-size: 1.4rem;
}

.custom-tooltip::after {
  content: "";
  position: absolute;
  top: -5px; 
  left: 10px;
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent #ff9800 transparent;
}
.s_show_hide {
  position: absolute;
  right: 15px;
  top: 34px;
  display: inline-block;
}

.hidden {
  display: none;
}

.iti__arrow {
  border-top: 4px solid #fff !important;
}
.iti__country-list {
  font-size: 1.4rem !important;
  border-radius: 10px !important;
}

.check-input {
  font-size: 1.4rem;
  color: #fff;
}

.step-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  max-width: 300px;
  padding-top: 20px;
}

.step-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.nav-button {
  padding: 10px 20px;
  margin: 0; 
  border: none;
  border-radius: 50%;
  font-size: 1.4rem;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.10) 0%,
    rgba(255, 255, 255, 0.06) 100%
  );
  color: #fff;
  cursor: pointer;
  width: 50px;
  height: 50px;
  transition: background 0.3s ease, color 0.3s ease;
}

.nav-button.active {
  background: linear-gradient(0deg, #1C49C4 0%, #14285C 100%);
  color: #fff;
}


.nav-button.disabled {
  background: #ccc;
  color: #666;
 
}


.step-label {
  margin-top: 5px;
  font-size: 0.8rem;
  text-transform: capitalize;
  color: #fff;
  text-align: center;
}

.step-line {
  flex-grow: 1; 
  height: 2px;         
  background: #ccc;   
  margin: 0 10px;     
}

.step-line.active {
  background: #8299ff;
  transition: background 0.3s ease;
}


div:where(.swal2-container) div:where(.swal2-popup){
  background: -webkit-linear-gradient(left,#1A2229,#101920) !important;
  font-size: 1.2rem !important;
  color: #fff !important;
  border-radius: 2rem !important;
}
div:where(.swal2-container) button:where(.swal2-styled):where(.swal2-confirm) {
  background-color: transparent !important ;
  color: #fff !important;
  font-size: 1.4rem !important;
  background:  -webkit-linear-gradient(0deg, #198754 0%, #0e5132 100%) !important;
}
/* forgot password */
.pw-recovery-form{
  font-size: 1.4rem;
}

.pw-recovery-form span{
  font-size: 1.4rem;
}

.pw-recovery-form .card{
  font-size: 1.4rem;
  background-color: transparent;
  background: -webkit-linear-gradient(left,#1A2229,#101920);
  color: #fff;
}

.pw-recovery-form .card-header{
  border-bottom: 1px solid  #393939;
}

.pw-recovery-form .form-control{
  height: 100%;
  width: 100%;
  outline: none;
  padding: 10px 20px;
  border-radius: 10px;
  border: 1px solid #ffffff1a;
  font-size: 1.4rem;
  transition: all 0.3s ease;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.10) 0%, rgba(255, 255, 255, 0.06) 100%) ;
  font-weight: 200;
  color: #fff;
}

.pw-recovery-form .form-control::placeholder{
  color: #fff;
}

.pw-recovery-form .form-label{
  text-transform: capitalize;
  font-size: 1.2rem;
}

.pw-recovery-form #recoverBtn {
    z-index: 1;
    position: relative;
    background: none;
    border: none;
    color: #fff;
    padding-left: 0;
    border-radius: 15px;
    font-size: 1.6rem;
    font-weight: 500;
    cursor: pointer;
    background: -webkit-linear-gradient(0deg, #1C49C4 0%, #14285C 100%);
    padding: 10px 20px;
}

.pw-recovery-form #recoverBtn:hover{
  background: #8299ff;
}
/* forgot password */

/* password-recovery */
.password-recovery .card{
  font-size: 1.4rem;
  background-color: transparent;
  background: -webkit-linear-gradient(left,#1A2229,#101920);
  color: #fff;
}

.password-recovery .form-control{
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.10) 0%, rgba(255, 255, 255, 0.06) 100%);
  color: #fff;
  font-size: 1.4rem;
  border: 1px solid  #393939;
  font-weight: 200;
  padding: 10px;
}

.password-recovery .form-control::placeholder{
  color: #fff;
}

.password-recovery .recover-btn {
  z-index: 1;
  position: relative;
  background: none;
  border: none;
  color: #fff;
  padding-left: 0;
  border-radius: 15px;
  font-size: 1.6rem;
  font-weight: 500;
  cursor: pointer;
  background: -webkit-linear-gradient(0deg, #1C49C4 0%, #14285C 100%);
  padding: 10px 40px;
}

.password-recovery .recover-btn:hover{
  background: #8299ff;
}

/* password-recovery */

.login-loader {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-block;
  border-top: 4px solid #FFF;
  border-right: 4px solid transparent;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
}
.login-loader::after {
  content: '';
  box-sizing: border-box;
  position: absolute;
  left: 0;
  top: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border-left: 4px solid #1a42ad;
  border-bottom: 4px solid transparent;
  animation: rotation 0.5s linear infinite reverse;
}
@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.btn-login {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  background: linear-gradient(90deg, #20B026 0%, #0F6B14 100%);
  width: 100%;
  height: 50px;
  border-radius: 15px;
  border: none;
  text-transform: uppercase;
}

.btn-login:disabled {
  background: #4c505a;
  cursor: not-allowed;
}

.loader-container {
  display: flex;
  justify-content: center;
  align-items: center;
}


.access-back-btn-container {
  display: flex;
  justify-content: left;
  align-items: flex-end;
  width: 100%;
  gap: 4px;
  text-decoration: none;
  margin-bottom: 20px;
}

.access-back-btn-container img{
  height: 25px;
}

.access-back-btn-container span{
  color: #FFF;
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 1px;
}

.fa-title-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.fa-title-container img{
  height: 20px;
  cursor: pointer;
}

.banner-login-container {
  background-image: url(../img/lp-img/login-signup/loginImage.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-bottom-right-radius: var(--bs-border-radius-xxl) !important;
  border-top-right-radius: var(--bs-border-radius-xxl) !important;
  min-height: 666px;
}



.pass-link img {
  height: 20px;
  cursor: pointer;
}

.iti__flag {
  display: none !important;
}

.iti__selected-dial-code {
  color: #fff;
}

.iti__country-name {
  display: none !important;
}

.iti__flag-box {
  display: none !important;
}

.main-access-container {
  border: 3px solid #515151;
  background: linear-gradient(90deg, #1A2229 0%, #101920 100%);
  border-radius: 54px;
  overflow: hidden;
}

.iti--separate-dial-code .iti__selected-dial-code {
  font-size: 13px;
}