/* Wrapper */
.rq-wrapper {
  display: flex;
  justify-content: center;
  padding: 40px 16px;
  background: #f5f7fb;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* Card */
.rq-card {
  width: 100%;
  max-width: 620px;
  background: #ffffff;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

/* Title */
.rq-title {
  margin: 0 0 8px;
  font-size: 28px;
  font-weight: 700;
  color: #244ba0;
}

.rq-subtitle {
  margin-bottom: 28px;
  color: #555;
  font-size: 15px;
}

/* Fields */
.rq-field {
  margin-bottom: 18px;
}

.rq-field label {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
  font-weight: 600;
  color: #333;
}

.rq-field input,
.rq-field textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid #dcdfe6;
  font-size: 15px;
  transition: border-color .2s, box-shadow .2s;
}

.rq-field input:focus,
.rq-field textarea:focus {
  outline: none;
  border-color: #244ba0;
  box-shadow: 0 0 0 3px rgba(36,75,160,0.15);
}

/* Button */
.rq-button {
  width: 100%;
  margin-top: 10px;
  padding: 14px;
  border: none;
  border-radius: 10px;
  background: linear-gradient(135deg, #b72323, #9f1e1e);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: transform .1s ease, box-shadow .1s ease;
}

.rq-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(183, 35, 35, 0.35);
}

/* Errors */
.rq-error {
  background: #ffeaea;
  border-left: 4px solid #ff1717;
  padding: 10px 12px;
  margin-bottom: 15px;
  color: #a30000;
  border-radius: 6px;
}

/* Success */
.rq-success {
  background: #e9f0ff;
  border-left: 4px solid #244ba0;
  padding: 10px 12px;
  margin-bottom: 15px;
  color: #244ba0;
  border-radius: 6px;
}

/* Mobile */
@media (max-width: 480px) {
  .rq-card {
    padding: 24px;
  }

  .rq-title {
    font-size: 22px;
  }
}

.rq-privacy {
  width: auto;
  margin: 15px 0;
}

.rq-privacy-label {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  line-height: 1.4;
}

.rq-privacy input[type="checkbox"] {
  width: auto;
  margin-top: 3px;
}

.rq-error {
  color: #c62828;
  font-size: 13px;
  margin-top: 6px;
}

.rq-alert {
  padding: 12px 15px;
  margin-bottom: 20px;
  border-radius: 6px;
  font-size: 14px;
}

.rq-alert-success {
  background: #e6f7ec;
  color: #1b7f4b;
  border: 1px solid #b7e4c7;
}

.rq-alert-error {
  background: #fdecea;
  color: #b71c1c;
  border: 1px solid #f5c2c7;
}

