@import url('https://fonts.googleapis.com/css2?family=Abel&family=Play:wght@400;700&family=Roboto+Flex:opsz,wght@8..144,100..1000&display=swap');

/* Volda Sans Font Family */
@font-face {
  font-family: 'Volda Sans';
  src: url('../font/volda-sans-family-font/voldasans-light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'Volda Sans';
  src: url('../font/volda-sans-family-font/voldasans-lightitalic.ttf') format('truetype');
  font-weight: 300;
  font-style: italic;
}

@font-face {
  font-family: 'Volda Sans';
  src: url('../font/volda-sans-family-font/voldasans-regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Volda Sans';
  src: url('../font/volda-sans-family-font/voldasans-italic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
}

@font-face {
  font-family: 'Volda Sans';
  src: url('../font/volda-sans-family-font/voldasans-medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Volda Sans';
  src: url('../font/volda-sans-family-font/voldasans-mediumitalic.ttf') format('truetype');
  font-weight: 500;
  font-style: italic;
}

@font-face {
  font-family: 'Volda Sans';
  src: url('../font/volda-sans-family-font/voldasans-semibold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: 'Volda Sans';
  src: url('../font/volda-sans-family-font/voldasans-semibolditalic.ttf') format('truetype');
  font-weight: 600;
  font-style: italic;
}

@font-face {
  font-family: 'Volda Sans';
  src: url('../font/volda-sans-family-font/voldasans-bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'Volda Sans';
  src: url('../font/volda-sans-family-font/voldasans-bolditalic.ttf') format('truetype');
  font-weight: 700;
  font-style: italic;
}

@font-face {
  font-family: 'Volda Sans';
  src: url('../font/volda-sans-family-font/voldasans-extrabold.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
}

@font-face {
  font-family: 'Volda Sans';
  src: url('../font/volda-sans-family-font/voldasans-extrabolditalic.ttf') format('truetype');
  font-weight: 800;
  font-style: italic;
}

@font-face {
  font-family: 'Volda Sans';
  src: url('../font/volda-sans-family-font/voldasans-black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
}

@font-face {
  font-family: 'Volda Sans';
  src: url('../font/volda-sans-family-font/voldasans-blackitalic.ttf') format('truetype');
  font-weight: 900;
  font-style: italic;
}

:root {
  --main-color: #bd9525;
  --color-100: #3ab663;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box; /* Asegura que padding y border estén incluidos en el tamaño total de los elementos */
  font-family: "Volda Sans", sans-serif;
}

body {
  font-family: "Volda Sans", sans-serif;
  font-size: 16px;
  line-height: normal;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  color: #fff;
  background-color: #0e0e0e !important;
  background-image: url(../img/fondo.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  position: relative;
}
html {
  scroll-behavior: smooth;
  overflow-x: auto;
  height: 100%;
}



.btn-go-home {
    position: fixed;
    top: 10px;
    left: 10px;
    padding: 10px 20px;
    background: #ffffff2e;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 10%);
    border: 1px solid var(--main-color);
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    text-decoration: none;

}

.btn-go-home:hover {
    font-weight: 600;
}

.s_show_hide {
    cursor: pointer;
    position: relative;
}

.s_show_hide i {
    position: absolute;
    right: 0px;
    top: 10px;
    transform: translateY(-50%);
    font-size: 1.3rem;
    color: #999;
    user-select: none;
}

a {
  color:#e4bf55;
  font-weight: 500;
}

a:hover {
  color: var(--main-color);
}


#login-page .form-control {
  
  padding: 0.6rem;
  color: #000;
  border-color: transparent;
  border-bottom: 1px solid #fff;
  border-radius: 8px;
}

/* #login-page .form-control:focus { background-color: transparent;
  box-shadow: none;
  border-bottom: 2px solid var(--color-100);
} */

/* #login-page .form-control::placeholder {
  
} */

#login-page .form-label {
  font-weight: 700;
  color: #fff;
}

#login-page .login-container {
  background: linear-gradient(182deg, rgba(3, 76, 34, 1) 0%, rgba(0, 0, 0, 1) 100%);
  background-repeat: no-repeat;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 10%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

}

#login-page .box-input {
  text-align: justify;
}
#login-page .logo-img {
  max-width: 200px;
}
#login-page h2 {
  font-size: 1.6rem;
  display: none;
}
#login-page .header-wrong-password {
  position: inherit;
  width: 100%;
  top: 25px;
  z-index: 2;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  transition: all 1s ease;
  font-size: 14px;
  -moz-transition: 1s;
  opacity: 0;
  padding: 11px 0px;
  left: -69px;
  font-weight: bold;
  width: 100%;
  display: block;
  text-align: center;
}
#login-page .opacity-1 {
  opacity: 1 !important;
}
#login-page .login {
  border-radius: 8px;
  border: 1px solid var(--main-color);
  color: #fff;
  background: var(--main-color);
  font-weight: 500;
  width: 100%;
  
}
#login-page .login:hover {
  background: #d1a836 ;
  border: 1px solid #d1a836;
 
}
.text-white-50 {
  color: #e4bf55!important;
}
#login-page .text-white-50:hover {
  color: var(--main-color) !important;
}

/* #login-page .form-control:focus-visible {
  outline: none !important;
  border-bottom: 2px solid var(--color-100);
}

#login-page input:-internal-autofill-selected {
  background-color: transparent !important;
} */



.bi bi-house-door-fill{
  color: var(--main-color);
}

#signup-page .sing-up-logo{
  max-width: 200px;
}

#signup-page .general-box {
   background: linear-gradient(182deg, rgba(3, 76, 34, 1) 0%, rgba(0, 0, 0, 1) 100%);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 10%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

#signup-page .form-control {
  background-color: #fff !important;
  padding: 0.6rem;
  color: #000 !important;
  border-radius: 8px;
}

#signup-page .form-control::placeholder{
  color:#1f1e1e !important;
}


#signup-page #country.open {
  background-color: #fff !important;
  color: #000;

 
}

/* #signup-page .form-control::placeholder {
  color: #fff;
} */

#signup-page .form-label {
  font-weight: 700;
  color: #fff;
}

#signup-page .form-select {
  color:#000;
  background: #fff !important;
}

#signup-page .s_show_hide {
  position: absolute;
  right: 15px;
  top: 40px;
  display: inline-block;
}

#signup-page .passwordWrapp {
  position: relative;
}

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

#signup-page  .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;
}

#signup-page .custom-tooltip::after {
  content: "";
  position: absolute;
  top: -5px; 
  left: 10px;
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent #ff9800 transparent;
}

#signup-page .hidden {
  display: none;
}


#signup-page .iti {
  width: 100% !important;
}
 .iti__country-list {
  background-color: transparent !important;
  background: rgba(0, 0, 0, 1) !important;
}


#signup-page .btn-login {
 background: var(--main-color);
  border-style: solid;
  border-width: 1px 1px 1px 1px;
  border-color: var(--main-color);
  border-radius: 8px;
  color: #fff;
  padding: 14px 0px;
  font-weight: 600;
  
}

#signup-page .btn-login:hover {
  background: #d1a836 ;
  border: 1px solid #d1a836;
}


#signup-page .form-check label{
  font-size: 0.9rem;
}
#signup-page .form-check a{
  font-size: 0.9rem;
}

#signup-page input[type="date"]::-webkit-calendar-picker-indicator {
  opacity: 0; 
}

#signup-page input[type="date"] {
  background: url('../img//calendar.svg') no-repeat right center;
  background-size: 20px;
  background-position: right 10px center;
  position: relative;
  cursor: pointer; 
}

#signup-page .iti__arrow {
  border-top: 4px solid var(--main-color);
}

div:where(.swal2-container) div:where(.swal2-popup) {
  background: #001f0d !important;
  color:#fff !important;
  border: 3px solid var(--main-color) !important;
  border-radius: 40px !important;
  
}

div:where(.swal2-icon).swal2-warning {
  color: #ffff !important;
  border-color: #ffff !important;
}

div:where(.swal2-container) h2:where(.swal2-title) {
  font-family:  "Volda Sans", sans-serif !important;
  letter-spacing: 1.6px;
}
div:where(.swal2-container) div:where(.swal2-html-container) {
  letter-spacing: 1.6px;
}
div:where(.swal2-container) .swal2-confirm {
  color:#fff !important;
  background-color: var(--main-color) !important;
  font-weight: 700;
}



.pw-recovery-form {
  /* background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1); */
}

.pw-recovery-form span{
  color:#fff
}

.pw-recovery-form .card {
  border: none;
  border-bottom: 0px solid transparent;
  background: rgb(3 3 3 / 50%);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 10%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.pw-recovery-form .card-header {
  border: none;
  border-bottom: 0px solid transparent;
}

.pw-recovery-form label {
  font-weight: 700;
  color: #fff;
  text-transform: capitalize;
}

.pw-recovery-form .form-control {
  padding: 0.6rem;
  color: #000 !important;
}

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

.pw-recovery-form #recoverBtn {
 background: linear-gradient(270deg, #F00031  0%,  #A90123 100%);
  border-style: solid;
  border-width: 1px 1px 1px 1px;
  border-color: var(--main-color);
  border-radius: 5px 5px 5px 5px;
  color: #fff;
  padding: 14px 20px;
  font-weight: 600;
}

.pw-recovery-form #recoverBtn:hover {
  background: var(--main-color) ;
  border: 1px solid var(--main-color);
}



#login-page .s_show_hide {
  position: absolute;
  right: 15px;
  top: 15px;
  display: inline-block;
}



.loader {
  width: 50px;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 8px solid #6a7aaf;
  border-right-color: var(--main-color);
  animation: l2 1s infinite linear;
}
@keyframes l2 {to{transform: rotate(1turn)}}


.form-check-label {
  font-size: 14px;
}

.form-check-input:checked {
  background-color: var(--main-color);
  border-color: var(--main-color);
}

.form-check-input{
  width: 1.3rem;
  height: 1.3em;
  border-radius: 0.25rem;
  border: 1px solid #fff;
}

.iti--separate-dial-code .iti__selected-dial-code {
  color: #000 !important;
 
}