/* ROH Forms – ενοποιημένο styling */
.roh-form {
  font-family: inherit;
  max-width: 760px;
}
.roh-form .roh-row { display: flex; gap: 14px; flex-wrap: wrap; }
.roh-form .roh-col { flex: 1 1 280px; min-width: 240px; }

.roh-form label {
  display: block;
  font-weight: 600;
  margin: 8px 0 4px;
}

.roh-form input[type="text"],
.roh-form input[type="email"],
.roh-form input[type="tel"],
.roh-form input[type="date"],
.roh-form select,
.roh-form textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #d9d9d9;
  border-radius: 10px;
  font-size: 16px;
  background: #fff;
  transition: border-color .2s, box-shadow .2s;
}

.roh-form input:focus,
.roh-form select:focus,
.roh-form textarea:focus {
  outline: none;
  border-color: #3982C4;
  box-shadow: 0 0 0 3px rgba(57,130,196,.12);
}

.roh-form .roh-actions { margin-top: 14px; }

.roh-form .roh-btn {
  display: inline-block;
  padding: 12px 22px;
  border: none;
  border-radius: 17px;
  background: #3982C4;
  color: #fff;
  cursor: pointer;
  font-weight: 600;
}
.roh-form .roh-btn:hover { filter: brightness(1.05); }

.roh-cf-error   { color: #b00020; background:#fdecec; padding:10px 12px; border-radius:10px; }
.roh-cf-success { color: #116b2b; background:#e8f7ee; padding:10px 12px; border-radius:10px; }

.g-recaptcha { margin-top: 8px; }
