/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

/* Layout */
body {
  background: #fff;
  color: #000;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 3rem 2rem;
  line-height: 1.6;
}

.container {
  background: #fff;
  padding: 2rem 2.5rem;
  max-width: 800px;
  width: 100%;
  border: 3px solid #000;
}

/* Header */
.header {
  margin-bottom: 2rem;
  text-align: center;
}

.header h1 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.header p {
  font-size: 0.95rem;
  color: #111;
}

/* Form Groups */
.form-group {
  margin-bottom: 1.5rem;
}

label,
p {
  display: block;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.clue {
  font-size: 0.85rem;
  color: #444;
  margin-left: 0.25rem;
}

/* Inputs */
.form-control,
.input-textarea {
  width: 100%;
  padding: 0.7rem 1rem;
  border: 2px solid #000;
  border-radius: 0;
  font-size: 0.95rem;
  background: #fff;
  color: #000;
}

.form-control:focus,
.input-textarea:focus {
  outline: none;
  border: 2px solid #000;
  background: #f0f0f0;
}

/* Radios and Checkboxes */
.input-radio,
.input-checkbox {
  margin-right: 0.5rem;
  accent-color: #000;
}

/* Textarea */
.input-textarea {
  min-height: 100px;
  resize: vertical;
}

/* Button */
.submit-button {
  width: 100%;
  padding: 0.7rem 1rem;
  background: #000;
  color: #fff;
  border: 2px solid #000;
  border-radius: 0;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  text-transform: uppercase;
  transition: all 0.2s ease;
}

.submit-button:hover {
  background: #fff;
  color: #000;
}
