@import url('https://fonts.googleapis.com/css?family=Lato');

html {
  height: 100%;
  background: #F2F3F4;
}

body {
  background: #1D43FF;
  background: linear-gradient( 48deg, rgba(15,57,84,1) 0%, #1D43FF 50%);
  height: -webkit-fill-available;
  height: -moz-available;
  height: fill-available;
  margin: 0px;
}

a {
  text-decoration: none;
}

ul {
  text-decoration: none;
  text-decoration: inherit;
}

.password-reset-background {
  background: url(/img/a.png)no-repeat center;
  background-size: cover;
  height: 420px;
}

.error-notification {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: #E74C3C;
  border-bottom: 2px solid #CB4335;
  border-left: 2px solid #CB4335;
  border-right: 2px solid #CB4335;
  border-bottom-right-radius: 15px;
  border-bottom-left-radius: 15px;
  margin-left: auto;
  margin-right: auto;
  -webkit-box-shadow: 0px 3px 5px 0px rgba(0,0,0,0.31);
  -moz-box-shadow: 0px 3px 5px 0px rgba(0,0,0,0.31);
  box-shadow: 0px 3px 5px 0px rgba(0,0,0,0.31);
  z-index: 6;
}

.error-notif-format {
  text-align: center;
}

.error-notif-text {
  font-family: lato;
  font-size: 17px;
  color: white;
  margin-top: 8px;
  margin-bottom: 8px;
}

.forgot-password-page-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: white;
  width: 89%;
  height: -webkit-fill-available;
  max-width: 468px;
  /* padding: 80px 25px; */
  padding: 80px 12px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0px 0px 5px 0px rgb(0 0 0 / 75%);
  -webkit-box-shadow: 0px 0px 5px 0px rgb(0 0 0 / 75%);
  -moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
}

.forgot-password-logo {
  display: table;
  width: 256px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
}

.forgot-password-title {
  font-size: 19px;
  font-family: avenir;
  font-weight: 100;
  text-align: center;
  margin-bottom: 10px;
}

.forgot-password-input {
  display: table;
  font-size: 17px;
  font-family: avenir;
  color: #868686;
  background-color: white;
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 12px 15px;
  max-width: 335px;
  width: 85%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 6px;
}

.forgot-password-button-container {
  display: table;
  background: #1d43ff;
  border-radius: 25px;
  border: none;
  padding: 14px 37px;
  width: 91%;
  max-width: 359px;
  margin-top: 30px;
  margin-left: auto;
  margin-right: auto;
  cursor: pointer;
  transition: .6s all;
}

.forgot-password-button-container p {
  font-size: 17px;
  font-family: avenir;
  color: white;
  margin: 0px;
}

.forgot-password-link {
  display: table;
  font-size: 16px;
  font-family: avenir;
  text-align: center;
  color: darkgrey;
  margin-top: 30px;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 532px) {
  .forgot-password-page-container {
    max-width: 468px;
    width: -webkit-fill-available;
  }
}

@media screen and (max-width: 425px) {
  .forgot-password-logo {
    width: 215px;
  }

  .forgot-password-title {
    font-size: 17px;
  }
}

@media screen and (max-width: 345px) {
  .forgot-password-page-container {
    justify-content: unset;
  }

  .forgot-password-logo {
    width: 195px;
  }

  .forgot-password-title {
    font-size: 16px;
  }

  .forgot-password-input {
    font-size: 16px;
  }

  .forgot-password-button-container p {
    font-size: 16px;
  }
}

@media screen and (max-width: 310px) {
  .forgot-password-title {
    font-size: 13px;
  }
}