:root {
  --grey8: #3f4250;
  --grey6: #535665;
  --action: #6760f2;
  --button-hover-active: rgba(255, 255, 255, 0.1);
}

body {
  padding: 0;
}

.main {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  font-family:
    'Pitch-Lato-UI',
    -apple-system,
    blinkmacsystemfont,
    'Segoe UI',
    roboto,
    helvetica,
    arial,
    sans-serif,
    'Apple  Color Emoji',
    'Segoe UI Emoji',
    'Segoe  UI Symbol';
}

/* Since many ad blockers can block content displaying
   we recommend not using the "consent" term as a selector name
   https://linear.app/pitch/issue/BAM-93/new-consent-page-doesnt-show-for-some-people */
.cons-container {
  max-width: 360px;
  margin: 16px;
}

.cons-header {
  position: absolute;
  top: 26px;
  left: 36px;
}

.cons-pitch-logo {
  width: 56px;
  height: 20px;
}

.cons-illustration {
  display: block;
  margin: 0 auto;
  margin-bottom: 24px;
}

.cons-text-container {
  text-align: center;
}

.cons-heading {
  font-size: 24px;
  line-height: 30px;
  color: var(--grey8);
  margin-bottom: 8px;
  font-family:
    'Mark Pro',
    -apple-system,
    blinkmacsystemfont,
    'Segoe UI',
    roboto,
    helvetica,
    arial,
    sans-serif,
    'Apple  Color Emoji',
    'Segoe UI Emoji',
    'Segoe  UI Symbol';
}

.cons-text {
  margin-top: 0;
  margin-bottom: 24px;
  font-size: 14px;
  line-height: 21px;
  color: var(--grey8);
}

.cons-link {
  font-weight: 700;
  color: var(--grey8);
  position: relative;
  text-decoration: underline;
  background-color: white;
  transition: background-color ease-out 0.15s;
}

.cons-footer-link {
  color: var(--grey6);
}

.cons-link:hover {
  color: var(--action);
  background-color: rgba(88, 110, 224, 0.06);
}

.cons-link:active {
  color: var(--action);
  background-color: rgba(88, 110, 224, 0.12);
}

.cons-label {
  display: flex;
  align-items: flex-start;
  font-weight: 500;
  padding: 8px 12px 12px;
  font-size: 14px;
  line-height: 21px;
  color: var(--grey8);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}

.cons-checkbox {
  margin-top: 4px;
  margin-right: 12px;
}

.cons-submit-button-container {
  display: flex;
  margin-top: 16px;
}

.cons-submit-button {
  width: 100%;
  height: 40px;
  padding: 6px 18px;
  gap: 6px;
  color: white;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  background: var(--action);
  box-shadow: 0px 1px 3px 0px rgba(103, 110, 144, 0.1);
  font-size: 14px;
  font-weight: 500;
  line-height: 21px;
}

.cons-submit-button[disabled],
.cons-submit-button.disabled {
  cursor: default;
  background: var(--action) !important;
  opacity: 0.6;
}

.cons-submit-button:hover {
  background-image: linear-gradient(
    var(--button-hover-active),
    var(--button-hover-active)
  ) !important;
  border: none;
}

@media (max-width: 460px) {
  .cons-submit-button {
    flex: 1;
  }
}

.cons-footer-signin-container {
  margin-top: 24px;
}

.cons-footer-signin {
  margin: 0px;
  color: var(--grey6);
}
