.auth-container {
  background: linear-gradient(135deg, #2eec71 0%, #8db39b 100%);
  min-height: 100vh;
}
.card {
  backdrop-filter: blur(10px);
  background: rgb(255, 255, 255);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2);
}
.input-field {
  width: 100%;
  height: 42px;
  font-size: 16px;
  border: 1px solid rgba(162, 162, 162, 0.59);
  padding: 0.5rem 1rem 0.5rem 1rem;
  background: rgba(255, 255, 255);
  color: rgb(0, 0, 0);
  border-radius: 6px;
  transition: all 0.3s;
}
.input-field:focus {
  outline: none;
  border-color: rgba(251, 188, 4, 0.5);
  background: rgba(255, 255, 255);
  transform: scale(1.02);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.input-field::placeholder {
  color: rgb(0, 0, 0);
  opacity: 0.5;
}
.alert-enter {
  opacity: 0;
  transform: translateY(-20px);
}
.alert-enter-active {
  opacity: 1;
  transform: translateY(0);
  transition: all 300ms ease-out;
}
.alert-exit {
  opacity: 1;
  transform: translateY(0);
}
.alert-exit-active {
  opacity: 0;
  transform: translateY(-20px);
  transition: all 300ms ease-in;
}

.alert-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 4px;
  background-color: rgba(255, 255, 255, 0.5);
  width: 100%;
  transform-origin: left;
  animation: progressBar 5s linear forwards;
}
.loginButton {
  background: linear-gradient(135deg, #fbb804 0%, #ffd700 100%);
  box-shadow: 0 0 6px rgba(251, 184, 4, 0.3);
}
.loginButton:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 15px rgba(251, 184, 4, 0.4);
}

@media (width > 520px) {
  #name-section {
    justify-content: space-between;
  }
  #reg-first-name {
    width: 98%;
  }
  #reg-last-name {
    width: 97%;
  }
  #first-name-section {
    width: 50%;
  }
  #last-name-section {
    width: 50%;
  }
  #reg-password {
    width: 98%;
  }
  #reg-confirm-password {
    width: 98%;
  }
  #password-div {
    width: 50%;
  }
  #confirmPassword-div {
    width: 50%;
  }
}
@media (width < 520px) {
  #reg-first-name {
    width: 100%;
  }
  #reg-last-name {
    width: 100%;
  }
  #password-div {
    width: 100%;
  }
  #confirmPassword-div {
    width: 100%;
  }
  #reg-password {
    width: 100%;
  }
  #regPasswordDiv {
    margin-bottom: 0.5rem;
  }
  #reg-confirm-password {
    width: 100%;
  }
  #first-name-section {
    width: 100%;
  }
  #last-name-section {
    width: 100%;
    margin-top: 0.5rem;
  }
  #name-section {
    justify-content: unset;
  }
}

@media (width < 770px) {
  #mobileNoDiv {
    width: 100%;
    margin-bottom: 0.5rem;
  }
  #emailDiv {
    width: 100%;
    margin-bottom: 0.5rem;
  }
}
@media (width > 770px) {
  #mobileNoDiv {
    width: 40%;
  }
  #emailDiv {
    width: 60%;
  }
}

@font-face {
  font-family: "Batangas"; /* Choose a name for your font */
  src: url("../fonts/Batangas\ Bold\ 700.otf") format("opentype"); /* Adjust the path to your font file */
}
h1 {
  font-family: Batangas;
  color: #474744;
}
.separator {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 10px 0; /* Adjust spacing as needed */
}

.separator::before,
.separator::after {
  content: "";
  flex-grow: 1;
  border-bottom: 1px solid #ccc; /* Customize line style */
  margin: 0 10px; /* Adjust spacing around "OR" */
}

.separator span {
  padding: 0 8px; /* Spacing around "OR" text */
  background-color: #fff; /* Match your background color */
}
