html,
body {
  height: 100%;
  margin: 0;
  font-family: 'Roboto', sans-serif;
}

.blue-header {
  display: flex;
  flex-direction: column;
  position: fixed;
  width: 100%;
  background-color: var(--accent-color);
  background-origin: border-box;
  box-sizing: border-box;
  padding: 0 50px;
  margin: 0;
  top: 0;
  min-height: 56px;
}

.container {
  position: fixed;
  top: 135px;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: auto;
  display: flex;
  flex-direction: column;
  justify-self: center;
  align-items: center;
  min-height: 100%;
  letter-spacing: 1px;
}

.title {
  margin: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100px;
  width: 240px;
}

.forgot-container {
  width: 400px;
  height: 300px;
  border-radius: 2px;
  background-color: #fff;
  box-shadow: 0 1px 10px #0000002b;
  display: flex;
  flex-direction: column;
  padding: 25px;
  box-sizing: border-box;
  margin-top: 25px;
}

.forgot-title {
  color: #455a64;
  line-height: 21px;
  margin-top: 0px;
  letter-spacing: 1px;
  font-weight: 500;
  margin-bottom: 10px;
  font-size: 16px;
}

.forgot-text {
  font-size: 13px;
  color: #455a64;
  line-height: 18px;
  margin-bottom: 30px;
}

.email-input {
  box-sizing: border-box;
  width: 100%;
  margin-bottom: 15.31px;
  height: 36px;
  border-radius: 4px;
  border-style: solid;
  border-color: #d6d6d6;
  border-width: 1px;
  padding-left: 10.5px;
  padding-right: 10.5px;
  font-family: inherit;
}

.email-input::placeholder {
  color: #989898;
}
.reset-button {
  height: 36px;
  box-sizing: border-box;
  font-size: 14px;
  font-weight: 500;
  line-height: 36px;
  font-stretch: 100%;
  color: #ffffff;
  background-color: var(--accent-color);
  border-radius: 4px;
  border-color: var(--accent-color);
  border-style: solid;
  cursor: pointer;
  font-family: inherit;
}

.reset-button:disabled {
  cursor: default;
  background-color: #cacaca;
  border: 1px solid #cacaca;
  color: #fff;
}

.check-email-container {
  display: none;
  color: var(--accent-color);
  margin-top: 2px;
  font-size: 12px;
}

.creditinals-container {
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 5px;
  height: 18px;
  color: #455a64;
}

a {
  margin-left: 10px;
  color: var(--accent-color);
}
