#str-form-wrapper {
  max-width: 450px;
  margin: 10px auto 30px auto;
  padding: 5px 30px 25px 30px ;
  border-radius: 12px;
  font-family: "Segoe UI", Arial, sans-serif;
}

#str-form label {
  font-weight: 600;
  color: #333;
  /*display: block; */
  margin-bottom: 3px;
}

#str-form input,
#str-form select {
  width: 100%;
  padding: 10px 12px;
  margin-bottom: 5px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 15px;
  transition: all 0.2s ease-in-out;
}

#str-form input:focus,
#str-form select:focus {
  border-color: #0073aa;
  box-shadow: 0 0 3px rgba(0,115,170,0.4);
  outline: none;
}

#str-form button {
  width: 100%;
  background: #0073aa;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

#str-form button:hover {
  background: #005e8d;
}

#str-message {
  margin-bottom: 15px;
  text-align: center;
  font-weight: 600;
}

#str-message.success {
  color: #2e8b57;
}

#str-message.error {
  color: #c00;
}

#str-message p {
    margin-bottom: 10px;
    font-weight: 500;
}


/* General Registration Form Styling */
#gen-form-wrapper {
  background: #ffffff;
  max-width: 500px;
  margin: 50px auto;
  padding: 35px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  font-family: "Inter", sans-serif;
}

#gen-form-wrapper label {
  font-weight: 600;
  margin-bottom: 2px;
  /*display: block; */
  color: #222;
}

#gen-form-wrapper input[type="text"],
#gen-form-wrapper input[type="email"] {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #d9dee2;
  border-radius: 6px;
  background: #f9fafb;
  font-size: 15px;
  margin-bottom: 15px;
  transition: all 0.2s;
}

#gen-form-wrapper input:focus {
  border-color: #0073aa;
  background: #fff;
  outline: none;
}

#gen-form-wrapper button {
  background-color: #0073aa;
  color: white;
  border: none;
  padding: 12px 0;
  width: 100%;
  border-radius: 6px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s ease;
}

#gen-form-wrapper button:hover {
  background-color: #005a87;
}

/* Message styling */
#gen-message {
  text-align: center;
  font-weight: 600;
  margin-bottom: 15px;
}

#gen-message.success {
  color: #0b8f24;
  display: block;
}

#gen-message.error {
  color: #c0392b;
  display: block;
}

/* Responsive */
@media (max-width: 600px) {
  #gen-form-wrapper {
    padding: 25px;
    margin: 20px;
  }
}
