* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background-color: #f5f5f5;
  color: #333;
  line-height: 1.6;
}

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
}

header {
  background: linear-gradient(135deg, #fe0b00, #ffd200);
  color: white;
  padding: 30px 0;
  text-align: center;
  border-radius: 8px 8px 0 0;
  margin-bottom: 20px;
}

.logo {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.subtitle {
  font-size: 1.2rem;
  opacity: 0.9;
}

.form-container {
  background-color: white;
  padding: 30px;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.form-section {
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.section-title {
  color: #1a2a6c;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #1a2a6c;
}

.form-group {
  margin-bottom: 20px;
}

label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #444;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
  transition: border 0.3s;
}

input:focus,
select:focus,
textarea:focus {
  border-color: #2a4b8c;
  outline: none;
  box-shadow: 0 0 0 2px rgba(42, 75, 140, 0.2);
}

.radio-group,
.checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 5px;
}

.radio-option,
.checkbox-option {
  display: flex;
  align-items: center;
}

.radio-option input,
.checkbox-option input {
  width: auto;
  margin-right: 8px;
}

.form-row {
  display: flex;
  gap: 20px;
}

.form-col {
  flex: 1;
}

.required::after {
  content: " *";
  color: #e74c3c;
}

.error-message {
  color: #e74c3c;
  font-size: 14px;
  margin-top: 5px;
  display: none;
}

.btn {
  background-color: #1a2a6c;
  color: white;
  border: none;
  padding: 14px 28px;
  font-size: 16px;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s;
  font-weight: 600;
}

.btn:hover {
  background-color: #2a4b8c;
}

.btn-reset {
  background-color: #95a5a6;
  margin-left: 10px;
}

.btn-reset:hover {
  background-color: #7f8c8d;
}

.form-footer {
  text-align: center;
  margin-top: 30px;
}

.form-note {
  font-size: 14px;
  color: #666;
  margin-top: 10px;
}

@media (max-width: 768px) {
  .form-row {
    flex-direction: column;
    gap: 0;
  }
}
