 /* signup page css */
  
  /* Base styles */
.signup-form-container {
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
    min-height: 60vh;
    padding: 1rem 1.5rem;
    padding-top: 0;
    margin-top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    color: #f1f1f1;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
  }

  .signup-form-container.fade-in {
    opacity: 1;
    transform: translateY(0);
  }
  
  #signupForm {
    background-color: #ffffff10;
    backdrop-filter: blur(12px);
    border-radius: 16px;
    padding: 1.5rem;
    margin-top: 4rem;
    max-width: 500px;
    width: 100%;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  }
  
  .form-title {
    font-size: 2rem;
    text-align: center;
    color: #ffffff;
    margin-bottom: 2rem;
  }
  
  .form-group {
    margin-bottom: 0.5rem;
    display: flex;
    flex-direction: column;
  }

  .select > option{
    color: green;
  }
  
  
  label {
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #e1e1e1;
  }
  
  input,
  select {
    padding: 0.75rem 1rem;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
    background: #ffffff20;
    color: #fff;
    outline: none;
    transition: border 0.3s;
  }
  
  input:focus,
  select:focus {
    border-color: #00c6ff;
  }
  
  #strengthText {
    margin-top: 0.25rem;
    font-size: 0.85rem;
    color: #ffdf80;
  }
  
  .submit-btn {
    background: #00c6ff;
    color: #000;
    padding: 0.9rem 1.5rem;
    border: none;
    border-radius: 8px;
    width: 100%;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
  }
  
  .submit-btn:hover {
    background: #007bb5;
  }
  
  .already-account {
    margin-top: 1.25rem;
    font-size: 0.95rem;
    text-align: center;
  }
  
  .already-account a {
    color: #00c6ff;
    text-decoration: none;
    font-weight: 500;
  }
  
  .already-account a:hover {
    text-decoration: underline;
  }

  /* Toast style */
/* Container: positioned fixed in bottom-right */
#formMessage {
  margin-top: 10px;
  font-size: 0.9rem;
  padding: 8px 12px;
  border-radius: 5px;
  display: none;
}

#formMessage.error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

#formMessage.success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

#formMessage.info {
  background: #cce5ff;
  color: #004085;
  border: 1px solid #b8daff;
}

/* Individual toast messages */
/* .toast {
  background: #333;
  color: #fff;
  padding: 12px 18px;
  border-radius: 6px;
  opacity: 0;
  font-size: 0.9rem;
}

.toast.show {
  opacity: 1;
  transform: translateX(0);
}

.toast.error {
  background: #d9534f;
}

.toast.info {
  background: #5bc0de;
} */

#termsCheckbox {
  margin-bottom: 20px;
}


/* Password strength meter */
#strengthMeterContainer {
  width: 100%;
  height: 6px;
  background: #eee;
  border-radius: 6px;
  margin-top: 6px;
  overflow: hidden;
}


#strengthMeter {
  /* margin-top: 0.25rem;
  font-size: 0.85rem; */
  /* color: #ffdf80; */
  height: 100%;
  width: 0%;
  transition: width 0.4s ease, background-color 0.4s ease;
  border-radius: 4px;
  background-color: red;
}
  
  /* Breakpoints */
  
  /* Extra Large Desktops */
@media (min-width: 1280px) {
  /* Optional for very large displays */
}

/* Desktop & Large Tablets */
@media (min-width: 1024px) and (max-width: 1279px) {
  .signup-form-container {
    padding-bottom: 50px;
  }
  #signupForm {
    max-width: 480px;
    padding: 2rem;
  }
}

/* Tablets */
@media (min-width: 768px) and (max-width: 1023px) {
  .signup-form-container {
    padding: 3rem 1rem;
  }
  #signupForm {
    padding: 2rem;
    margin-top: 0;
  }
}

/* Large Phones (phablets) */
@media (min-width: 576px) and (max-width: 767px) {
  .signup-form-container { 
    padding: 2rem 1rem;
  }
  .form-title {
    font-size: 1.8rem;
  }
}

/* Standard Mobile Phones */
@media (max-width: 575px) {
  .signup-form-container { 
    padding: 2rem 1rem;
  }
  .form-title {
    font-size: 1.6rem;
  }
  input,
  select {
    padding: 0.65rem;
    font-size: 0.95rem;
  }
  .submit-btn {
    font-size: 0.95rem;
  }
  #signupForm {
    padding: 1.5rem;
    margin-top: 0;
  }
  .form-group {
    margin-bottom: 1rem;
  }
  .form-title {
    font-size: 1.45rem;
  }
}

/* Small Phones */
@media (max-width: 375px) {
  .form-title {
    font-size: 1.35rem;
  }
  input,
  select {
    font-size: 0.9rem;
  }
  .form-title {
    font-size: 1.3rem;
  }
  .submit-btn {
    padding: 0.75rem;
  }

  #signupForm {
    padding: 1.5rem;
    margin-top: 0;
  }
}