/*
 * *
 * * Forgot Password Page
 */
.c-forgotten-password-page {
  margin-bottom: 40px;
}


.c-forgot-pass__message-info {
  color: #ed1c2e;
  margin-bottom: 15px;
  text-align: center;
}


.c-forgot-pass__form {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}


.c-forgot-pass__email-label {
  width: 10%;
}


.c-forgot-pass__email-input-text {
  width: 30%;
  padding: 5px;
}


.c-forgot-pass__action-button-submit {
  padding: 7px;
  margin-left: 5px;
  border: 0;
  background: black;
  color: white;
}


@media only screen and (max-width: 640px) {
  .c-forgot-pass__form {
  flex-wrap: wrap;
}


.c-forgot-pass__email-label {
  width: 100%;
}


.c-forgot-pass__email-input-text {
  width: 100%;
  margin-bottom: 10px;
}
}


