/* === BDORI Scholarship Form – Clean Final Version === */

.bdori-form {
  max-width: 600px;
  margin: 0 auto;              /* centers the form */
  padding: 0 20px;             /* small side breathing room */
  text-align: left;
}

.bdori-field {
  display: block;
  width: 100%;
  margin: 16px 0;
  position: relative;
}

.bdori-field input,
.bdori-field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #e5e5e5;
  border-radius: 6px;
  font-size: 16px;
  background: #f7f7f7;
}

.bdori-field textarea {
  min-height: 110px;
  resize: vertical;
}

.bdori-count {
  position: absolute;
  right: 8px;
  bottom: -18px;
  font-size: 12px;
  color: #777;
}

.bdori-consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 18px 0;
  font-size: 14px;
  color: #444;
}

.bdori-button {
  display: block;
  margin: 24px auto;
  padding: 14px 28px;
  font-size: 16px;
  letter-spacing: 1px;
  background: #2f64c9;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  transition: background-color 0.2s ease, transform 0.1s ease;
}

.bdori-button:hover {
  background-color: #1e3a8a;
  transform: translateY(-1px);
}

.bdori-msg {
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  color: #b91c1c;
  margin-top: 14px;
}

/* Warning / Validation Notice Styling */
.bdori-form p[role="alert"],
.bdori-msg {
  margin-top: 16px;
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  color: #ff0000;
  background: #fff3f3;
  padding: 14px 18px;
  border-radius: 6px;
  -webkit-text-stroke: 0.5px #660000;
  letter-spacing: 0.5px;
}