:root {
  --clr-background: #131313;
  --clr-white: #ffffff;
  --clr-primary: #b3b3b3;
  --clr-focus: #1db954;
}

.password-div {
    position: relative;
}

.forgot{
    position: absolute;
    right: 5px;
    margin-top: 25px;
    transform: translateY(-50%);
    
    align-self:center;
    color: rgb(var(--color-hare));
    letter-spacing: .8px;
    margin-left: 2px;
    margin-right: 14px;
    font-family: 'din-round-bold';
    text-decoration: none;
    text-transform: uppercase;

    cursor: pointer;
}

.create-account-button{
    display: flex;
    justify-content: center;
    margin-top: 20px;
    width: 100%;
    padding: 14px;
    background-color: rgb(var(--color-macaw));
    color: white;
    border-style: none;
    cursor: pointer;
}

.hidden{
    display: none!important;
}

/* Animation */
.loading-balls-container {
    display: flex;
    background-color: #1cb0f6;
    width: 100px;
    justify-content: space-around;
    padding: 10px;
  }
  .loading-balls-container .loading-ball {
    background-color: currentcolor;
    color: white;
    height: 8px;
    width: 8px;
  }
  .animation {
    animation-duration: 1.2s;
    animation-iteration-count: infinite;
    animation-name: opacity-animation, scale-animation;
    animation-timing-function: ease-in-out;
  }
  .second-animation {
    animation-delay: 0.4s;
  }
  .third-animation {
    animation-delay: 0.8s;
  }
  .loading-ball {
    border-radius: 50%;
  }

  @keyframes scale-animation {
    0% {
      transform: scale(1);
    }
    33.3333% {
      transform: scale(0.8);
    }
    66.6667% {
      transform: scale(0.8);
    }
    100% {
      transform: scale(1);
    }
  }

  @keyframes opacity-animation {
    0% {
      opacity: 1;
    }
    33.3333% {
      opacity: 0.25;
    }
    66.6667% {
      opacity: 0.5;
    }
    100% {
      opacity: 1;
    }
  }




  body{
    font-family: 'din-round';
}

.signup-page-container{
    align-items: center;
    display: flex;
    justify-content: center;
    position: relative;
    margin-top: 10px;
}

.close-button-div {
    position: absolute;
    left: 30px;
    top: 30px;
    right: auto;
}

.login-button-container {
    position: absolute;
    right:3%;
    top: 2%;
    box-shadow: 0 4px 0px #e5e5e5;
    border-radius: 18px;
}

.login-button{
    background-color: #ffffff;
    color: rgb(var(--color-macaw));
    border: 2px solid rgb(var(--color-swan));
    padding: 14px;
    cursor: pointer;
}

.login-button:hover{
    filter: brightness(0.9);
}

.signup-section-main {
    width: 420px;
    position: relative;
    text-align: center;
    margin-top: 80px;
}

.create-profile-heading{
    margin: 10px 0 15px;
    font-size: 26px;
    font-weight: bolder;
}

.input-fields-div{
    display: inline-flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.input-field{
    background: rgb(var(--color-polar));
    border: 2px solid rgb(var(--color-swan));
    border-radius: 12px;
    display: flex;
    box-sizing: border-box;
    color: var(--web-ui_input-color,rgb(var(--color-eel)));
    caret-color: rgb(var(--color-macaw));
    padding: 14px;
    font-size: 18px;
}

.input-field:focus {
    border: 2px solid #00dcfe;
}

.error-message{
    text-align: start;
    color: rgb(var(--color-fire-ant));
    display: flex;
}

.field-one{
    margin-top: 8px;
    width: 100%;
    display: inline-flex;
    flex-direction: column;
    gap: 4px;
}

.age-privacy-div{
    text-align: start;
}

.age-privacy-span{
    font-weight: 100;
    color: rgb(var(--color-wolf));
}

.age-privacy-div a{
    color: rgb(var(--color-macaw));
    text-decoration: none;
}

.create-account-button-container{
    box-shadow: 0 4px 0px rgb( 24,153,214 );
    border-radius: 18px;
}

.create-account-button{
    display: flex;
    justify-content: center;
    margin-top: 22px;
    width: 100%;
    padding: 14px;
    background-color: rgb(var(--color-macaw));
    color: white;
    border-style: none;
    cursor: pointer;
}

.create-account-button:hover{
    filter: brightness(1.1);
}

.clicked {
    box-shadow: 0 !important;
    translate: 0 3px;
}

.terms-privacy-container{
    align-items: center;
    display: flex;
    flex-direction: column;
    padding-bottom: 10px;
    padding-top: 40px;
    color: rgb(var(--color-hare));
    font-size: 14px;
}

.terms-privacy{
    margin-bottom: 20px;
}

.terms-privacy a{
    color: rgb(var(--color-hare));
    font-weight: 700;
    text-decoration: none;
}

.split-line{
    margin-top: 50px;
    background: rgb(var(--color-swan));
    height: 2px;
}

.hidden{
    display: none !important;
}
.signup-information-div{
 /* border: 1px solid #131313; */
 padding: 45px 15px 2px 15px;
 width: 400px;
 height: 300px;
 border-radius: 10px;
}

.signup-information-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: start;
  box-shadow: 0 0 6px rgb(0 0 0 / 52%);
  border-radius: 20px;
}

.logo-on-card {
  position: absolute;
  top: -35px; /* Puedes ajustar según el tamaño del logo */
  width: 85px;
  height: auto;
  border-radius: 50%;
  z-index: 2;
}

@media (max-width: 800px) {
  .signup-section-main{
    margin-top: 50%;
  }
  .signup-section-main{
    width: 100%;
    max-width: 370px;
  }
}