*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-family: 'Open Sans', sans-serif;
  background-color: #E1F0EB;
  color: #073C33;
  font-size: 18px;
  line-height: 28px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow-x: hidden;
}

a {
  color: #1C8E7A;
  text-decoration: none;
}

a:hover {
  color: #1C8E7A;
  text-decoration: underline 1px;
}

.content {
  flex: 1 1 10px;
}

.footer {
  padding: 40px 0;
  text-align: center;
  color: #529B8E;
  position: relative;
  z-index: 2;
}

.footer-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 26px;
  justify-content: center;
  font-size: 16px;
  line-height: 22px;
}

.footer-legal {
  font-size: 14px;
  line-height: 22px;
  margin: 0;
}

.container {
  width: 100%;
  max-width: 960px;
  padding: 0 20px;
  margin: 0 auto;
}

.home-content {
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: center;
  flex: 1 1 10px;
  padding: 48px 0;
  position: relative;
  z-index: 2;
}

.home-content > .container {
  display: flex;
  flex-direction: column;
  gap: 90px;
  align-items: center;
}

.logo,
.logo img {
  display: block;
  width: 124px;
  height: 124px;
  overflow: hidden;
}

.logo {
  border-radius: 20px;
  box-shadow: 4px 8px 24px rgba(28, 144, 121, 0.18);
}

.home-content-text {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.main-title {
  font-size: 48px;
  line-height: 65px;
  margin: 0;
  color: #1C8E7A;
}

.main-description {
  display: block;
  max-width: 680px;
}

.status-button {
  width: 100%;
  max-width: 320px;
  display: block;
  margin: 0 auto;
  border-radius: 20px;
  min-height: 56px;
  background-color: #EDF9F5;
  color: #529B8E;
  text-align: center;
  padding: 12px 24px;
  font-size: 16px;
  line-height: 32px;
}

.home-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
}

.home-bg span {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(87, 192, 153, 0.25);
}

.home-bg span:nth-child(1) {
  width: 100vh;
  height: 100vh;
}

.home-bg span:nth-child(2) {
  width: 120vh;
  height: 120vh;
}

.home-bg span:nth-child(3) {
  width: 150vh;
  height: 150vh;
}

.home-bg span:nth-child(4) {
  width: 190vh;
  height: 190vh;
}

.home-bg span:nth-child(5) {
  width: 240vh;
  height: 240vh;
}

.home-bg span:nth-child(6) {
  width: 300vh;
  height: 300vh;
}

.header {
  display: block;
  padding: 40px 0;
}

.header-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.header .logo,
.header .logo img {
  width: 84px;
  height: 84px;
  border-radius: 14px;
}

.header .status-button {
  width: auto;
  min-width: auto;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.page {
  padding: 40px 0;
  flex: 1 1 10px;
  margin-bottom: 40px;
}

.page-title {
  margin: 0 0 48px;
  font-size: 48px;
  line-height: 65px;
  color: #1C8E7A;
  text-align: center;
}

.page-content * {
  margin-top: 1.2em;
  margin-bottom: 1.2em;
}

.page-content li {
  margin-top: 0.8em;
  margin-bottom: 0.8em;
}

.page-content a {
  text-decoration: underline 1px;
}

.page-content a:hover {
  text-decoration: none;
}

.page-content code {
  font-size: 14px;
  padding: 4px;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 4px;
}

.page-content hr {
  margin: 36px 0;
  border-width: 1px 0 0 0;
  border-color: rgba(0, 0, 0, 0.1);
}

.form {
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

@media (min-width: 768px) {
  .columns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 30px;
    grid-row-gap: 0;
  }

  .column:nth-child(1) {
    grid-area: 1 / 1 / 2 / 2;
  }

  .column:nth-child(2) {
    grid-area: 1 / 2 / 2 / 3;
  }
}

@media (max-width: 767px) {
  .header-container {
    flex-direction: column;
    gap: 24px;
  }

  .header .status-button {
    position: relative;
    top: 0;
    transform: none;
  }

  .main-title,
  .page-title {
    font-size: 28px;
    line-height: 38px;
  }

  .columns {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }
}
