.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;
    }
  }
/* Dark Theme Overrides for Login */
    :root {
      --bg-primary: #FFFFFF;
      --bg-surface: rgba(245, 245, 245, 0.8);
      --border-subtle: #EEEEEE;
      --text-primary: #111111;
      --text-secondary: #444444;
      --accent-primary: #FF6E00;
    }

    body {
      background: var(--bg-primary);
      color: var(--text-primary);
    }

    .main-container {
      background: transparent !important;
    }

    .signup-page-container {
      background: var(--bg-surface) !important;
      -webkit-backdrop-filter: blur(15px);
      backdrop-filter: blur(15px);
      border: 1px solid var(--border-subtle) !important;
      color: var(--text-primary);
      box-shadow: 0 0 40px rgba(255, 110, 0, 0.1);
    }

    .create-profile-heading {
      color: var(--text-primary) !important;
    }

    .input-field {
      background: #F9F9F9 !important;
      border: 1px solid var(--border-subtle) !important;
      color: var(--text-primary) !important;
    }

    .input-field::placeholder {
      color: var(--text-secondary) !important;
    }

    .login-button {
      color: var(--accent-primary) !important;
      border-color: var(--border-subtle) !important;
      background: transparent !important;
    }

    .login-button:hover {
      background: rgba(255, 110, 0, 0.05) !important;
      border-color: var(--accent-primary) !important;
    }

    .split-line {
      background-color: var(--border-subtle) !important;
    }

    .terms-privacy span {
      color: var(--text-secondary) !important;
    }

    .terms-privacy a {
      color: var(--accent-primary) !important;
    }

    .create-account-button {
      background-color: var(--accent-primary) !important;
      color: #FFF !important;
      box-shadow: 0 4px 0px #CC5500 !important;
    }

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