.password-reset {
  display: flex;
  background: #e4eef5;
  align-items: center;
  flex-direction: column;
  padding-bottom: 72px;
  flex: 1 0 auto;
}

.main-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form {
  display: flex;
  padding: 40px 0;
  margin-top: 96px;
  flex-direction: column;
  border-radius: 8px;
  background: #fff;
  width: 592px;
  gap: 24px;
}

.logo-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 8px;
}

.logo {
  width: 240px;
}

.input-area {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 384px;
  margin: 0 auto;
}

.form-header {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.header-title {
  text-align: center;
  color: #333;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
  margin: 0;
}

.header-description {
  color: #333;
  font-size: 12px;
  font-style: normal;
  font-weight: 300;
  line-height: 160%;
}

.label-input {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.label {
  color: #333;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
}

.input {
  height: 40px;
  padding: 0px 12px;
  box-sizing: border-box;
  width: 100%;
  border-radius: 4px;
  border: 1px solid #cad7e0;
  background: #fff;
}

.invalid {
  background: #fae1e6;
  border: 1px solid #e83c5d;
}

.error-text {
  margin: 0;
  color: #e83c5d;
  font-size: 12px;
  font-style: normal;
  font-weight: 300;
  line-height: 100%;
}

.link {
  position: relative;
  color: #006bb9;
  font-size: 12px;
  font-style: normal;
  font-weight: 300;
  line-height: 100%;
  margin-left: 18px;
}

.link:link {
  text-decoration: none;
}

.link:before {
  position: absolute;
  background-image: url("/images/arrow.svg");
  background-size: 14px;
  background-repeat: no-repeat;
  content: "";
  width: 14px;
  height: 14px;
  top: -1px;
  left: -16px;
}

.link:hover {
  opacity: 0.5;
}

.submit-button {
  width: 240px;
  height: 40px;
  padding: 10px;
  margin: 0 auto;
  border-radius: 4px;
  background: #006bb9;
  border: none;
  cursor: pointer;
  color: #fff;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
  box-shadow: 0 -2px 0 0 rgba(51, 51, 51, 0.1) inset;
}

.submit-button:hover {
  background: linear-gradient(
      0deg,
      rgba(51, 51, 51, 0.1) 0%,
      rgba(51, 51, 51, 0.1) 100%
    ),
    #006bb9;
}
