.header {
  background-color: rgba(249, 249, 249, 0.15);
}
.header.sticky {
  background-color: rgba(249, 249, 249, 0.95);
}

.reg {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 15px;
}

.auth-box {
  position: relative;
  background-color: var(--target-default);
  border-radius: 20px;
  padding: 20px;
  max-width: 480px;
  width: 100%;
  filter: url(#graphicBlur);
  text-align: center;
}
.auth-box::before {
  content: "";
  background-color: var(--target-default);
  position: absolute;
  bottom: 100%;
  right: 47%;
  height: 40px;
  width: 20px;
}

.reg-box {
  max-width: 420px;
  width: 100%;
}
.reg-box .form-horizontal {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.reg-box .form-horizontal .step {
  display: flex;
  flex-direction: column;
}
.reg-box .form-horizontal .step label {
  font-weight: 600;
  color: #2b2534;
  font-size: 14px;
  margin-bottom: 5px;
}
.reg-box .form-horizontal .step label .bright {
  color: var(--target-default);
}
.reg-box .more {
  text-align: center;
  font-size: 14px;
}
.reg-box .lost-block {
  margin-top: 5px;
  text-align: right;
  font-size: 14px;
}