@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Thin.ttf") format("truetype");
  font-style: normal;
  font-weight: 100;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-ExtraLight.ttf") format("truetype");
  font-style: normal;
  font-weight: 200;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Light.ttf") format("truetype");
  font-style: normal;
  font-weight: 300;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Medium.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-SemiBold.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Bold.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-ExtraBold.ttf") format("truetype");
  font-style: normal;
  font-weight: 800;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Black.ttf") format("truetype");
  font-style: normal;
  font-weight: 900;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  background-color: #000000;
}

.wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  min-height: 100dvh;
}

.wrapper header,
.wrapper footer,
.wrapper main {
  position: relative;
  z-index: 2;
}

.container {
  max-width: 390px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}
@media (max-height: 827px) {
  .container {
    padding: 0 18px;
  }
}

.header {
  padding-top: 11px;
  padding-bottom: 10px;
  position: relative;
}

.header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding-top: 10px;
}

.header__logo {
  max-width: 200px;
  max-height: 40px;
  object-fit: contain;
  display: block;
}

.header__label {
  color: #999999;
  font-size: 14px;
  font-weight: 400;
  font-style: normal;
  line-height: normal;
}

.main {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.main__title {
  color: #aaaaaa;
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 2rem;
}
@media (max-width: 390px) {
  .main__title {
    font-size: 20px;
  }
}

.main__submit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.main__btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  padding: 38px 15px;
  border-radius: 14px;
  background: #ffffff;
  color: #000000;
  font-family: "Inter", sans-serif;
  font-size: clamp(1.625rem, 1.4844rem + 1.4063vw, 2.1875rem);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.main__btn-icon {
  width: clamp(1.625rem, 1.4844rem + 1.4063vw, 2.1875rem);
  height: clamp(1.625rem, 1.4844rem + 1.4063vw, 2.1875rem);
  object-fit: contain;
  flex-shrink: 0;
}

.main__price {
  color: #ffffff;
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.4;
}
.main__price-free {
  font-weight: 700;
  color: #ffffff;
}
.main__price-then {
  color: #999999;
}
@media (max-height: 827px) {
  .main__price {
    font-size: 14px;
  }
}

.main__back {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  text-decoration: underline;
  color: #999999;
  margin-top: 0.25rem;
}
.main__back:hover {
  color: #aaaaaa;
}

.footer {
  padding: 20px 0 10px;
  position: relative;
}

.footer__container {
  max-width: 380px;
  margin: 0 auto;
  text-align: center;
  color: #999999;
  position: relative;
  z-index: 3;
}

.footer__container p {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.4;
}

.footer__container p a {
  color: inherit;
  text-decoration: underline;
}
