/* signup.css */

body {
  font-family: Arial, sans-serif;
  background: #f5f5f5;
}
.form-container {
  max-width: 450px;
  margin: 40px auto;
  padding: 20px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.form-container h2 {
  text-align: center;
  margin-bottom: 20px;
}
.input-group {
  position: relative;
  margin-bottom: 16px;
}
.input-group i {
  position: absolute;
  top: 12px;
  left: 12px;
  color: #888;
}
.input-group input,
.input-group select {
  width: 100%;
  padding: 10px 12px 10px 36px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 14px;
}
.input-group small {
  color: #d00;
  display: block;
  margin-top: 4px;
  font-size: 12px;
}
.terms small {
  color: #d00;
  display: block;
  margin-top: 4px;
  font-size: 12px;
}
.terms {
  margin: 16px 0;
  font-size: 14px;
}
.terms input {
  margin-right: 8px;
}
.signupForm button {
  width: 100%;
  padding: 12px;
  background: #1a1a1a;
  color: rgba(255, 255, 255, 0.7);
  border: none;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
}
.signupForm button:disabled {
  background: #888;
  cursor: not-allowed;
}
#message {
  margin-top: 20px;
  text-align: center;
  font-size: 14px;
}
