/* Signup Page Layout */
.signup-hero {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding-top: 10px;
  background: linear-gradient(135deg, #1d4ed8, #1d4ed8);
}

/* Signup Box */
.signup-box {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  padding: 20px 15px;
  width: 500px;
  max-width: 90%;
  text-align: center;
}

/* Title */
.signup-box h2 {
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 10px;
  color: #1e293b;
}

/* Form Fields */
.signup-box input[type="text"],
.signup-box input[type="email"],
.signup-box input[type="password"],
.signup-box select {
  width: 100%;
  padding: 10px 15px;
  margin: 6px 0;
  border: 1px solid #d1d5db;
  border-radius: 10px;
  font-size: 1rem;
  outline: none;
  transition: 0.3s ease;
}

.signup-box input:focus,
.signup-box select:focus {
  border-color: #2563eb; /* blue instead of red for consistency */
  box-shadow: 0 0 6px rgba(37, 99, 235, 0.3);
}

/* Button */
.signup-box .btn-primary {
  width: 100%;
  padding: 10px;
  margin-top: 15px;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 10px;
  border: none;
  background: #2563eb;
  color: #fff;
  transition: background 0.3s ease;
}

.signup-box .btn-primary:hover {
  background: #1d4ed8;
}

/* Messages */
.error {
  color: #dc2626;
  margin: 10px 0;
  font-size: 0.9rem;
}

.success {
  color: #16a34a;
  margin: 10px 0;
  font-size: 0.9rem;
}

/* Footer */
.signup-footer {
  margin-top: 20px;
  font-size: 0.9rem;
  color: #6b7280;
}

.signup-footer a {
  color: #2563eb;
  text-decoration: none;
  transition: 0.3s ease;
}

.signup-footer a:hover {
  text-decoration: underline;
}
