.auth-center {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.auth-center-top {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  height: 100vh;
}

.splash {
  background: var(--toast-toast-info-background);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  height: 100vh;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  overflow: hidden;
}
.splash .logo {
  margin-top: 25%;
}
.splash .img-splash {
  position: absolute;
  bottom: -20px;
}

.form-container.register {
  height: calc(100% - 100px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.verification-desc {
  text-align: center;
  font-size: 12px;
  max-width: 358px;
}

.form-group.verification .d-flex {
  gap: 7px;
}
.form-group.verification .d-flex input {
  width: 100%;
  max-width: 44px;
  height: 44px;
  border-radius: 6px;
  border: 1px solid var(--neutral-30);
  font-size: 14px;
  font-weight: 400;
  text-align: center;
}
.form-group.verification .d-flex.warning input {
  border: 1px solid var(--danger);
}

.resend-code {
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  color: var(--muted-light);
}
.resend-code a {
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  color: var(--primary);
  text-decoration: none;
}