: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", Helvetica, Arial, sans-serif;
  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: 48px 20px 90px;
}

.content {
  width: 100%;
  max-width: 336px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.72px;
}

.logo-wrap {
  width: 100%;
  margin: 2px auto 34px;
}

.logo {
  display: block;
  width: 292px;
  max-width: 100%;
  margin: 0 auto;
}

.section {
  font-size: 14px;
  line-height: 1.35;
  margin: 0 0 30px;
  font-weight: 600;
}

.section p {
  margin: 0;
}

.section p + p {
  margin-top: 1px;
}

.link {
  color: var(--link);
  text-decoration: none;
  font-weight: 500;
}

.block-gap {
  margin-top: 31px;
}

.mailing {
  margin-top: 29px;
  margin-bottom: 0;
}

.email {
  width: 100%;
  max-width: 308px;
  height: 42px;
  border: 2px 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: 11px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 400;
}

.email::placeholder {
  color: var(--placeholder);
  opacity: 1;
}

.represented {
  margin-top: 56px;
}

@media (max-width: 640px) {
  .page {
    padding-top: 34px;
  }

  .content {
    max-width: 336px;
  }

  .section {
    font-size: 14px;
  }

  .logo-wrap {
    margin-bottom: 42px;
  }
}
