
  body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #f5f7fa;
    margin: 0;
    padding: 0;
  }

  .signup-container {
    max-width: 420px;
    margin: 4rem auto;
    padding: 2.5rem;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    animation: fadeInUp 0.6s ease-in-out;
  }

  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .signup-container h2 {
    text-align: center;
    color: #262b31ff;
    margin-bottom: 1.8rem;
    font-weight: 600;
  }

  form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  form input,
  form select {
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
    background-color: #f9f9f9;
    transition: border-color 0.3s;
  }

  form input:focus,
  form select:focus {
    border-color: #262b31ff;
    outline: 0;
    background-color: #fff;
  }

  button[type="submit"] {
    background-color: #28655fff;
    color: #fff;
    padding: 0.8rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s;
  }

  button[type="submit"]:hover {
    background-color: #262b31ff;
  }

  .auth-links {
    margin-top: 1rem;
    text-align: center;
    font-size: 0.95rem;
  }

  .auth-links a {
    text-decoration: none;
    color: #5792dfff;
  }

  .auth-links a:hover {
    text-decoration: underline;
  }

  @media (max-width: 500px) {
    .signup-container {
      margin: 2rem 1rem;
      padding: 1.8rem;
    }
  }

  .password-toggle-btn {
    margin-top: 0.3rem;
    font-size: 0.85rem;
    background: transparent;
    border: none;
    color: #007bff;
    cursor: pointer;
    padding: 0;
  }
.form-errors {
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #fecaca;
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.form-errors ul {
  margin: 0;
  padding-left: 1.25rem;
}


.google-auth {
  margin-top: 1.2rem;
  display: flex;
  justify-content: center;
}

.google-auth-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;

  width: 100%;
  max-width: 420px;

  padding: 0.75rem 1rem;

  background-color: #ffffff;
  color: #262b31ff;

  border: 1px solid #d1d5db;
  border-radius: 8px;

  font-size: 0.95rem;
  font-weight: 500;
  font-family: 'Segoe UI', sans-serif;

  text-decoration: none;
  cursor: pointer;

  transition: 
    background-color 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.google-auth-btn img {
  width: 18px;
  height: 18px;
}

.google-auth-btn:hover {
  background-color: #f9fafb;
  border-color: #9ca3af;
}

.google-auth-btn:active {
  background-color: #f3f4f6;
}

.google-auth-btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(88, 146, 223, 0.35);
}
