/* Registration consent page */
body.consent-page {
  background: #edf0f4;
  font-family: "Arial", sans-serif;
  color: #1f2a35;
}

body.consent-page .consent-wrapper {
  min-height: 100vh;
  padding: 28px 0 14px;
}

body.consent-page .consent-card {
  max-width: 800px;
  margin: 0 auto;
  border: 0;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(17, 52, 85, 0.12);
  overflow: hidden;
}

body.consent-page .consent-top-line {
  height: 4px;
  background: #0d6fd3;
}

body.consent-page .consent-card-body {
  padding: 22px 22px 18px;
}

body.consent-page .consent-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

body.consent-page .consent-title {
  margin: 0;
  font-size: 24px;
  line-height: 1.17;
  font-weight: 700;
  letter-spacing: .3px;
  text-transform: uppercase;
  max-width: 78%;
}

body.consent-page .consent-logo {
  width: 100px;
  height: auto;
}

body.consent-page .form-label {
  color: #74808e;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .5px;
  margin-bottom: 5px;
  text-transform: uppercase;
}

body.consent-page .form-label .required-star {
  color: #d63d46;
}

body.consent-page .consent-input.form-control {
  border: 1px solid #d8dde4;
  border-radius: 6px;
  height: 38px;
  font-size: 13px;
  color: #2f3d4f;
  box-shadow: none;
}

body.consent-page .consent-input.form-control:focus {
  border-color: #0d6fd3;
  box-shadow: 0 0 0 .12rem rgba(13, 111, 211, .15);
}

body.consent-page .consent-note {
  margin-top: 12px;
  border: 1px solid #e0e6ec;
  border-radius: 8px;
  background: #f7f9fc;
  padding: 14px 14px 10px;
  color: #4b5a69;
  font-size: 11.8px;
  line-height: 1.6;
}

body.consent-page .consent-note p {
  margin-bottom: 10px;
}

body.consent-page .consent-note p:last-child {
  margin-bottom: 0;
  font-weight: 700;
  color: #2c3d4f;
}

body.consent-page .signature-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
  margin-bottom: 6px;
}

body.consent-page .signature-clear {
  border: 0;
  background: transparent;
  color: #d63d46;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0;
  cursor: pointer;
}

body.consent-page #signature-area {
  border: 1.5px dashed #cfd8e4;
  border-radius: 8px;
  min-height: 88px;
  background: #fff;
}

body.consent-page .subscribe-btn {
  margin-top: 14px;
  width: 100%;
  border: 0;
  border-radius: 8px;
  background: #0d6fd3;
  color: #fff;
  height: 43px;
  font-size: 15px;
  font-weight: 700;
  transition: .2s ease;
}

body.consent-page .subscribe-btn:hover {
  background: #075db3;
}

body.consent-page .privacy-hint {
  margin-top: 10px;
  text-align: center;
  color: #8a95a5;
  font-size: 10px;
}

body.consent-page .privacy-hint a {
  color: #0d6fd3;
  text-decoration: none;
}

body.consent-page .consent-footer {
  max-width: 800px;
  margin: 16px auto 0;
  padding-top: 12px;
  border-top: 1px solid #d9dee5;
  color: #5f6a78;
}

body.consent-page .consent-footer .address-line {
  margin: 0;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.5;
}

body.consent-page .consent-footer .copyright-line {
  margin-top: 8px;
  font-size: 10px;
  text-align: center;
}

body.consent-page .consent-footer .orevan-logo {
  width: 95px;
  height: auto;
}

.input-group-text {
  color: #2f3d4f;
  font-size: 0.85rem !important;
}

@media (max-width: 575px) {
  body.consent-page .consent-wrapper {
    padding: 14px 8px 10px;
  }

  body.consent-page .consent-title {
    font-size: 22px;
  }
}