:root {
  --bg: #ffffff;
  --text: #272727;
  --link: #2a38ff;
  --input-border: #575757;
  --placeholder: #b0b0b0;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  font-family: "Helvetica Neue Light", "HelveticaNeue-Light", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 300;
  background: var(--bg);
  color: var(--text);
}

body {
  display: flex;
  justify-content: center;
}

.page {
  width: 100%;
  max-width: 768px;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  padding: 10px 20px 60px;
}

.content {
  width: 100%;
  max-width: 336px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.72px;
  margin-top: 0;
}

.logo-wrap {
  width: 100%;
  margin: 0 auto 12px;
}

.logo {
  display: block;
  width: 292px;
  max-width: 100%;
  margin: 0 auto;
}

.public-alert {
  margin: 0 0 16px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.public-alert.success {
  color: #13753a;
}

.public-alert.error {
  color: #b3261e;
}

.section {
  font-size: 14px;
  line-height: 1.35;
  margin: 0 0 18px;
  font-weight: 400;
}

.section p {
  margin: 0;
}

.section p + p {
  margin-top: 1px;
}

.link {
  color: var(--link);
  text-decoration: none;
  font-weight: 400;
}

.block-gap {
  margin-top: 24px;
}

.mailing {
  margin-top: 22px;
  margin-bottom: 0;
}

.signup-form {
  margin-top: 11px;
}

.email {
  width: 100%;
  max-width: 240px;
  height: 36px;
  border: 1px solid var(--input-border);
  border-radius: 0;
  background: transparent;
  text-align: center;
  text-transform: none;
  font-size: 13px;
  letter-spacing: 0.35px;
  color: #2b2b2b;
  outline: none;
  padding: 0 8px;
  margin-top: 0;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 400;
}

.email::placeholder {
  color: var(--placeholder);
  opacity: 1;
}

.signup-btn {
  margin-top: 10px;
  min-width: 110px;
  height: 34px;
  border: 1px solid var(--input-border);
  background: transparent;
  color: var(--text);
  -webkit-appearance: none;
  appearance: none;
  font-size: 12px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  cursor: pointer;
}

.signup-btn:hover {
  background: #f2f2f2;
}

.represented {
  margin-top: 42px;
}

@media (max-width: 640px) {
  .page {
    padding-top: 8px;
  }

  .content {
    max-width: 336px;
  }

  .section {
    font-size: 14px;
  }

  .logo-wrap {
    margin-bottom: 12px;
  }
}
