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

@font-face {
  font-family: 'poppins-black';
  src: url('/fonts/poppins/Poppins-Black.ttf');
}
@font-face {
  font-family: 'poppins-light';
  src: url('/fonts/poppins/Poppins-Light.ttf');
}
@font-face {
  font-family: 'poppins-thin';
  src: url('/fonts/poppins/Poppins-Thin.ttf');
}
@font-face {
  font-family: 'poppins-medium';
  src: url('/fonts/poppins/Poppins-Medium.ttf');
}
@font-face {
  font-family: 'poppins-semibold';
  src: url('/fonts/poppins/Poppins-SemiBold.ttf');
}
@font-face {
  font-family: 'poppins-semibold-italic';
  src: url('/fonts/poppins/SemiBoldItalic.ttf');
}

html {
  height: 100%;
  background: #1D43FF;
  background: linear-gradient( 48deg, rgba(15,57,84,1) 0%, #1D43FF 50%);
}

body {
  margin: 0;
}

a {
  text-decoration: none;
}

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

/* ERROR NOTIFICATIONS */

.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: 2;
}

.error-notif-format {
  text-align: center;
  width: 95%;
  margin-left: auto;
  margin-right: auto;
}

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

/* NEED HELP CSS */

body {
  height: -webkit-fill-available;
  height: -moz-available;
  height: fill-available;
}

.login-page-container {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.login-form-col-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: white;
  width: 89%;
  height: -webkit-fill-available;
  height: -moz-available;
  height: 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);
  border-radius: 10px;
}

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

.login-title {
  font-size: 17px;
  font-family: 'poppins-light';
  font-weight: 100;
  text-align: center;
  margin-bottom: 10px;
}

.express-login-button-format {
  display: flex;
  justify-content: center;
  background-color: white;
  border: 1px solid #ccc;
  border-radius: 5px;
  max-width: 359px;
  width: 96%;
  padding: 12px 15px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 8px;
  cursor: pointer;
  transition: .6s all;
}

.express-login-button-format:hover {
  background-color: #f6f6f6;
}

.express-login-icon {
  width: 22px;
  margin-top: auto;
  margin-right: 8px;
  margin-bottom: auto;
}

.express-login-text {
  font-size: 17px;
  font-family: 'poppins-light';
  color: #878787;
  margin: 0px;
}

.login-form-separator {
  font-size: 17px;
  font-family: 'poppins-light';
  text-align: center;
  margin: 30px 0px;
}

.manual-login-field {
  display: table;
  font-size: 17px;
  font-family: 'poppins-light';
  color: #868686;
  background-color: white;
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 10px 15px;
  max-width: 335px;
  width: 87%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 6px;
}

.manual-login-button-container {
  display: table;
  background: #1d43ff;
  border-radius: 8px;
  border: none;
  padding: 10px 37px;
  width: 94%;
  max-width: 367px;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
  cursor: pointer;
  transition: .6s all;
}

.manual-login-button-container:hover {
  background-color: #183ae4;
}

.manual-login-button-container p {
  font-size: 17px;
  font-family: 'poppins-light';
  color: white;
  margin: 0px;
}

.forgot-password-container {
  display: table;
  margin-top: 25px;
  margin-left: auto;
  margin-right: auto;
}

.forgot-password-link {
  font-size: 16px;
  font-family: 'poppins-light';
  text-align: center;
  color: darkgrey;
}

@media screen and (max-width: 532px) {
  .login-form-col-container {
    max-width: 468px;
    width: -webkit-fill-available;
  }
}

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

  .login-title {
    font-size: 17px;
  }
}

@media screen and (max-width: 375px) {
  .login-logo {
    margin-bottom: 25px;
  }

  .login-form-separator {
    margin: 18px 0px;
  }
}

@media screen and (max-width: 365px) {
  .login-form-col-container {
    display: block;
    height: unset;
    padding: 55px 12px;
  }
}

@media screen and (max-width: 345px) {
  .login-form-col-container {
    justify-content: unset;
  }

  .login-logo {
    width: 195px;
  }

  .login-title {
    font-size: 16px;
  }

  .express-login-text {
    font-size: 15px;
  }

  .manual-login-field {
    font-size: 16px;
  }

  .manual-login-button-container p {
    font-size: 16px;
  }
}

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