* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Noto Sans", sans-serif;
  font-weight: 400;
}

input, button {
  font-family: "Noto Sans", sans-serif;
}

.wrapper {
  min-height: 100vh;
  width: 100%;
  min-width: 320px;
  background-image: linear-gradient(#050404FF, #161616FF);
}

.container {
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 40px;
  padding-bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: 320px;
  min-height: 100vh;
}

.basic_content {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.basic_img {
  width: 80px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.basic_img_content {
  margin-bottom: 20px;
}

h1 {
  text-align: center;
  margin-top: 0;
  margin-bottom: 20px;
  font-weight: 400;
  color: #fff;
  font-size: 16px;
}

h2 {
  text-align: center;
  margin-top: 0;
  margin-bottom: 20px;
  font-weight: 400;
  font-size: 20px;
  color: #fff;
}

p {
  margin-top: 0;
  margin-bottom: 0;
}

.text-finish {
  text-align: center;
  color: #fff;
  font-size: 16px;
}

.text {
  text-align: center;
  color: #fff;
  font-size: 16px;
}

.margin_bottom {
  margin-bottom: 20px;
}

.form_block {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.input {
  width: 100%;
  padding: 10px 16px;
  background-color: rgba(0, 0, 0, 0.2);
  text-align: center;
  border-radius: 8px;
  border: 1px solid #1e1e1e;
  color: #fff;
  font-weight: 400;
  font-size: 14px;
  outline-style: none;
}

.input_error {
  border: 1px solid #ff0000 !important;
}

.button_send {
  width: 100%;
  padding: 10px 16px;
  background-color: #1e1e1e;
  border: 1px solid #1e1e1e;
  border-top-color: #373737;
  border-radius: 8px;
  color: #fff;
  cursor: pointer;
}

.button_send:active {
  border-top-color: #1e1e1e;
}

[data-show] {
  display: none;
}

[data-show="true"] {
  opacity: 1;
  transition: opacity 150ms ease;
  display: block;
}

[data-show="false"] {
  opacity: 0;
  transition: opacity 150ms ease;
}

.otp_row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.otp_input {
  padding: 10px 5px;
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  border: 1px solid #1e1e1e;
  text-align: center;
  flex-grow: 1;
  color: #fff;
  font-size: 16px;
  width: 5px;
}




.fade-in {
  opacity: 0;
  animation: fadeIn 150ms forwards ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}