/* === PAGE BACKGROUND === */
body {
  background: linear-gradient(180deg, #41006b, #9a57b4);
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  color: #fff;
}

/* === SIGNUP CONTAINER === */
.signup-container {
  max-width: 500px;
  margin: 3rem auto;
  background: #fff;                         
  padding: 2rem;
  border-radius: 14px;
  box-shadow: 0 6px 25px rgba(0,0,0,0.4);
  color: #000;                              
}

/* === TITLE === */
.signup-container h2 {
  text-align: center;
  margin-bottom: 1.5rem;
  color: #41006b;                          
  font-size: 2rem;
  font-weight: 700;
}

/* === FORM === */
.signup-form label {
  display: block;
  margin-top: 1rem;
  font-weight: 700;
  color: #333;
}

.signup-form input,
.signup-form select {
  width: 100%;
  padding: 0.75rem;
  margin-top: 0.3rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-family: "Poppins", sans-serif;       
  font-size: 1rem;
  transition: border 0.3s ease, box-shadow 0.3s ease;
}

.signup-form input:focus,
.signup-form select:focus {
  border-color: #ff9600;                     
  outline: none;
  box-shadow: 0 0 6px rgba(255,150,0,0.4);
}

/* === SIGNUP BUTTON === */
.signup-btn {
  margin-top: 1.5rem;
  width: 100%;
  padding: 0.9rem;
  background: #ff6600;                       
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 700;
  transition: background 0.3s ease, transform 0.2s ease;
}

.signup-btn:hover {
  background: #e05500;
  transform: translateY(-2px);
}

.signup-btn:active {
  background: #c94a00;
  transform: translateY(0);
}

/* === ERROR MESSAGES === */
.errorlist {
  color: #a00000;                            
  margin: 0.5rem 0;
  list-style: none;
  padding: 0;
  font-weight: 600;
}
