body {
  margin: 0;
  font-family: 'Open Sans', sans-serif;
  background-image: url('../assets/signup.jpeg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  color: #342E1D;
}

.signup-wrapper {
  background-color: rgba(255, 255, 240, 0.96);
  backdrop-filter: blur(1.5px);
  border-radius: 20px;
  padding: 60px 40px;
  max-width: 600px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
  text-align: center;
}

.signup-wrapper h1 {
  font-size: 2.5rem;
  color: #A40865;
  margin-bottom: 10px;
}

.signup-wrapper p {
  font-size: 1.2rem;
  color: #3A1900;
  margin-bottom: 30px;
}

/* Form structure */
.signup-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.signup-form label {
  text-align: left;
  font-weight: bold;
  color: #404040;
}

.signup-form input {
  padding: 12px 16px;
  border: none;
  border-radius: 10px;
  background-color: #FFF6EE;
  font-size: 1rem;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.05);
}

.signup-form input:focus {
  outline: none;
  box-shadow: 0 0 0 3px #FFA500;
}

/* Submit button */
.signup-form button {
  padding: 14px 32px;
  background: linear-gradient(to right, #FFA500, #E45811);
  color: white;
  font-weight: bold;
  font-size: 1rem;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.signup-form button:hover {
  transform: scale(1.05);
}

/* Success message */
#signup-success {
  background-color: #A0D468;
  color: white;
  padding: 20px;
  margin-top: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
  font-size: 1rem;
}

/* Back button */
.back-buttons {
  margin-top: 30px;
}

.back-buttons a {
  display: inline-block;
  padding: 12px 24px;
  background: linear-gradient(to right, #A40865, #E45811);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  font-size: 1rem;
  transition: transform 0.2s ease;
}

.back-buttons a:hover {
  transform: scale(1.05);
}
