
label {
  display: block;
  margin-top: 15px;
  font-weight: normal;
  color: #555;
}

input, textarea, button {
  width: 100%;
  padding: 10px;
  margin-top: 8px;
  border-radius: 5px;
  border: 1px solid #ddd;
  font-size: 14px;
}

input:focus, textarea:focus {
  outline: none;
  border-color: #007bff;
}


button {
  background-color: #999999;
  color: white;
  font-weight: bold;
  border: none;
  cursor: pointer;
  margin-top: 20px;
}

button:hover {
  background-color: #0056b3;
}

.required {
  color: red;
}

#status {
  display: none;
  margin-top: 20px;
  text-align: center;
  padding: 10px;
  border-radius: 5px;
  font-weight: bold;
}

#status.success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

#status.error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}
