* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background: #f5f7fa;
  color: #222;
  padding: 40px;
}


h3 {
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.form-field {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
}

.form-field label {
  margin-bottom: 8px;
  font-weight: 600;
}

.form-field label span {
  color: red;
}

.form-field input,
.form-field textarea,
.form-field select {
  padding: 10px;
  border: 2px solid #e9ecef;
  border-radius: 6px;
  font-size: 1rem;
  font-family: inherit;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: #4361ee;
}

.form-option {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.form-option input {
  margin-right: 8px;
  width: auto;
}

.form-option label {
  margin-bottom: 0;
  font-weight: normal;
}

.form-submit-btn {
  background: #4361ee;
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.form-submit-btn:hover {
  background: #3a0ca3;
}

hr {
    margin-top: 100px;
}