body {
  font-family: "Merriweather", serif;
  background: #f4f4f4;
  margin: 0;
  padding: 0;
  background-image: url('./assets/Rwanda-1536x768.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
}

* {
  box-sizing: border-box;
}

.container {
  max-width: 900px;
  margin: 30px auto;
  background: #fff;
  padding: 30px;
  border: 1px solid #ccc;
}

.header-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-text {
  display: flex;
  flex-direction: column;
}

.coat {
  height: 90px;
}



.header {
  text-align: center;
  border-bottom: 3px solid #003f87;
  padding-bottom: 20px;
}

.header h1 {
  margin: 0;
  font-size: 2.3rem;
  color: #003f87;
}

.header p {
  margin-top: 5px;
  color: #333;
}

.explainer h2 {
  font-size: 1.4rem;
  color: #003f87;
  margin: 20px 0 10px;
  border-left: 4px solid #003f87;
  padding-left: 10px;
}

.explainer p,
.explainer ul li {
  color: #222;
  line-height: 1.6;
}

.explainer ul {
  padding-left: 20px;
}

.understanding-checkbox {
  background: #eef3ff;
  border: 1px solid #003f87;
  margin: 25px 0;
  padding: 15px;
}

.email-form {
  opacity: 0.3;
  pointer-events: none;
  transition: 0.3s ease;
  background: #fafafa;
  border: 1px solid #ccc;
  padding: 20px;
  border-radius: 8px;
}

.email-form.enabled {
  opacity: 1;
  pointer-events: auto;
}

.recipients-section h3 {
  color: #003f87;
  margin-bottom: 10px;
}

.recipients-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.recipient-item {
  border: 1px solid #ccc;
  padding: 12px;
  border-radius: 6px;
  cursor: pointer;
  background: #fff;
  display: flex;
  flex-direction: column;
}

.recipient-item.selected {
  border-color: #003f87;
  background: #e8f0ff;
}

.recipient-item.compulsory {
  border-color: #003f87;
  background: #e8f0ff;
  cursor: not-allowed;
}

.recipient-item input {
  margin-right: 8px;
}

.recipient-name {
  font-weight: bold;
  color: #003f87;
}

.recipient-email {
  font-size: 0.9rem;
  color: #444;
}

.form-group {
  margin: 18px 0;
}

.form-group label {
  font-weight: bold;
  color: #003f87;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #aaa;
  border-radius: 6px;
}

.form-group textarea {
  height: 180px;
  resize: vertical;
}

.action-buttons {
  text-align: center;
  margin-top: 20px;
}

.btn {
  padding: 10px 22px;
  border: none;
  border-radius: 6px;
  background: #003f87;
  color: white;
  font-weight: bold;
  cursor: pointer;
}
