/**/
/* fonts */
/**/
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:wght@400;700&family=Noto+Serif:wght@700&display=swap');

*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  border: none;
  outline: none;
  background-color: transparent;
  background-position: 50% 50%;
  box-sizing: border-box;
  font: inherit;
  text-align: inherit;
  letter-spacing: inherit;
  color: inherit;
}
/**/
/* defaults */
/**/
* {
  box-sizing: border-box;
}

html, body {
  padding: 0;
  margin: 0;
  width: 100%;
  height: 100%;
}

body {
  font-family: 'Roboto', 'Arial', 'Helvetica', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: #393939;
}

label, input, select, textarea {
  display: block;
}
button {
  cursor: pointer;
}


/**/
/* form */
/**/
.form-input {
  position: relative;
}
.form-input__input {
  width: 100%;
  padding: 11px;
  border-radius: 4px;
  border: 1px solid #DBDBDB;
  box-shadow: 0px 1px 2px rgba(0, 15, 55, 0.06);
  font-size: 16px;
  line-height: 1.25;
  color: #252525;
  transition-duration: 0.125s;
  transition-property: border-color, box-shadow;
}
.form-input__input:hover {
  border-color: #727272;
}
.form-input__input:focus {
  border-color: #0075E3;
  box-shadow: 0px 1px 6px rgba(0, 134, 255, 0.14), 0px 1px 3px rgba(0, 134, 255, 0.03);
}


/**/
/* login */
/**/
.login {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  min-height: 100vh;
  overflow: hidden;
  padding: 24px;
  background: #000 url(../img/bg.jpg) 50% 50% no-repeat;
}
@media screen and (min-width: 1920px) {
  .login {
    background-size: cover;
  }
}
.login__window {
  position: relative;
  width: 460px;
  margin: auto;
  padding: 40px;
  border-radius: 8px;
  background-color: #FFF;
}
.login__logo {
  display: block;
  margin: 0 auto 24px;
}
.login__title {
  margin-bottom: 20px;
  font-size: 28px;
  line-height: 1.35;
  font-weight: 700;
  font-family: "Noto Serif";
  text-align: center;
  letter-spacing: -0.02em;
  color: #252525;
}
.login__label {
  margin: 24px 0 4px;
}
.login__label a {
  float: right;
  color: #2B70B8;
}
.login__label a:hover {
  text-decoration: underline;
}
.login__button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 32px;
  padding: 12px;
  border-radius: 4px;
  background-color: #2B70B8;
  box-shadow: 0px 2px 8px rgba(43, 112, 184, 0.25);
  font-size: 16px;
  line-height: 1.25;
  font-weight: 700;
  color: #FFF;
  transition-duration: 0.125s;
  transition-property: background-color;
}
.login__button svg {
  margin-left: 8px;
}
.login__button:hover {
  background-color: #165EA8;
}
.forgot-password-go-back {
  margin-top: 20px;
  text-align: center;
}
.forgot-password {
  margin-top: 20px;
  color: #2B70B8;
  text-align: center;
}

.forgot-password-go-my-library {
  margin-top: 10px;
  color: #2B70B8;
  text-align: center;
}
.forgot-password-input {
  margin-top: 20px;
  margin-bottom: 20px;
}
.forgot-password-instructions {
  text-align: center;
}

@keyframes spin {
  100% {
    transform:rotate(360deg);
  }
}
@media screen and (max-width: 599.98px) {
  .login {
    padding: 20px;
  }
  .login::before {
    width: 120vh;
    height: 120vh;
    margin: -60vh 0 0 -60vh;
  }
  .login__window {
    width: 100%;
    padding: 24px;
  }
}


/**/
/* legal nav */
/**/
.legal-nav {
  position: relative;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  margin-top: 24px;
  font-size: 13px;
  text-align: center;
  color: #FFF;
}
.legal-nav__link {
  margin-right: 20px;
  text-decoration: underline;
}
.legal-nav__link:hover {
  text-decoration: none;
}
@media screen and (max-width: 599.98px) {
  .legal-nav__link {
    margin: 0 10px;
  }
  .legal-nav__copy {
    flex-basis: 100%;
    margin-top: 8px;
  }
}
