@import url("https://fonts.googleapis.com/css2?family=Raleway:wght@300;400;800&display=swap");
@-webkit-keyframes showErrorMsg {
  0% {
    -webkit-transform: translate(0, -50%);
            transform: translate(0, -50%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(0, calc(-100% - 1rem));
            transform: translate(0, calc(-100% - 1rem));
    opacity: 1;
  }
}
@keyframes showErrorMsg {
  0% {
    -webkit-transform: translate(0, -50%);
            transform: translate(0, -50%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(0, calc(-100% - 1rem));
            transform: translate(0, calc(-100% - 1rem));
    opacity: 1;
  }
}

@-webkit-keyframes hideErrorMsg {
  0% {
    -webkit-transform: translate(0, calc(-100% - 1rem));
            transform: translate(0, calc(-100% - 1rem));
    opacity: 1;
  }
  100% {
    -webkit-transform: translate(0, -50%);
            transform: translate(0, -50%);
    opacity: 0;
  }
}

@keyframes hideErrorMsg {
  0% {
    -webkit-transform: translate(0, calc(-100% - 1rem));
            transform: translate(0, calc(-100% - 1rem));
    opacity: 1;
  }
  100% {
    -webkit-transform: translate(0, -50%);
            transform: translate(0, -50%);
    opacity: 0;
  }
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: 'Raleway', sans-serif;
}

body {
  font-size: 12pt;
  background: #ffffff;
}

h1,
h2 {
  text-transform: uppercase;
}

.content-block {
  background: #efefefaa;
  -webkit-transform: translate(-50%, 0%);
          transform: translate(-50%, 0%);
  margin-left: 50%;
  width: 90vw;
  max-width: 850px;
  margin-top: .5rem;
  margin-bottom: .5rem;
  padding: 1rem;
}

#login-form-container {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: #efefefaa;
  width: 90vw;
  max-width: 30rem;
}

#login-form-container #login-form {
  position: relative;
  padding: 2rem;
}

#login-form-container #login-form label {
  display: inline-block;
  font-weight: 600;
  font-size: .85rem;
  letter-spacing: .04em;
  color: #3338;
  margin-left: 1.4rem;
  margin-bottom: .3rem;
}

#login-form-container #login-form input {
  font-size: 1.5rem;
  border-radius: 999px;
  border: 1px solid #3338;
  background: #ffffff66;
  color: #333;
  width: 100%;
  padding: .8rem;
  padding-left: 1.4rem;
  margin-bottom: 1rem;
}

#login-form-container #login-form input:valid {
  background: #fffb;
}

#login-form-container #login-form input::-webkit-input-placeholder {
  color: #3338;
  font-weight: 300;
}

#login-form-container #login-form input:-ms-input-placeholder {
  color: #3338;
  font-weight: 300;
}

#login-form-container #login-form input::-ms-input-placeholder {
  color: #3338;
  font-weight: 300;
}

#login-form-container #login-form input::placeholder {
  color: #3338;
  font-weight: 300;
}

#login-form-container #login-form button {
  font-size: 1.5rem;
  border-radius: 3px;
  border: none;
  background: #ffffff66;
  color: #333;
  width: 100%;
  padding: .8rem;
  cursor: pointer;
}

#login-form-container #login-form button[type="submit"] {
  margin-top: 1rem;
  -webkit-box-shadow: 0 0 10px -5px #000000ee;
          box-shadow: 0 0 10px -5px #000000ee;
  -webkit-transition: -webkit-box-shadow .2s;
  transition: -webkit-box-shadow .2s;
  transition: box-shadow .2s;
  transition: box-shadow .2s, -webkit-box-shadow .2s;
}

#login-form-container #login-form button[type="submit"]:hover {
  -webkit-box-shadow: 0 0 10px -2px #000000ee;
          box-shadow: 0 0 10px -2px #000000ee;
}

#login-form-container .error-msg {
  position: absolute;
  width: 100%;
  padding: 1rem;
  -webkit-transform: translate(0, calc(-100% - 1rem));
          transform: translate(0, calc(-100% - 1rem));
  font-weight: bold;
  background: #efefefaa;
  color: #a01a1a;
  opacity: 0;
  -webkit-animation: showErrorMsg .2s .2s forwards, hideErrorMsg .2s 5s forwards;
          animation: showErrorMsg .2s .2s forwards, hideErrorMsg .2s 5s forwards;
}

.form--download_button button {
  position: relative;
  border: none;
  font-weight: 600;
  font-size: .85rem;
  padding: .5rem;
  padding-top: calc(64px + 1.3rem);
  background: none;
  cursor: pointer;
  color: #333;
}

.form--download_button button::before {
  position: absolute;
  content: "";
  width: 64px;
  height: 64px;
  background: #ffffff66;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  top: .5rem;
  left: 50%;
  border-radius: 999px;
  transform: translate(-50%, 0);
  background-image: url("../images/icons/icon--download--default.svg");
  background-repeat: no-repeat;
  background-size: auto 75%;
  background-position: center;
  -webkit-box-shadow: 0 0 10px -5px #000000ee;
          box-shadow: 0 0 10px -5px #000000ee;
  -webkit-transition: -webkit-box-shadow .2s;
  transition: -webkit-box-shadow .2s;
  transition: box-shadow .2s;
  transition: box-shadow .2s, -webkit-box-shadow .2s;
}

.form--download_button button:hover::before {
  -webkit-box-shadow: 0 0 10px -2px #000000ee;
          box-shadow: 0 0 10px -2px #000000ee;
}

.form--download_button--video button::before {
  background-image: url("../images/icons/icon--download--video.svg");
}

.form--download_button--audio button::before {
  background-image: url("../images/icons/icon--download--audio.svg");
}

.file-list {
  list-style: none;
  padding: .5rem;
}

.file-list li {
  padding: .5rem;
  padding-left: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.file-list li .item-description {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  place-content: center;
}

.file-list li .item-description .file-title {
  font-size: 1.7rem;
  font-weight: 500;
  color: #333;
}

.file-list li .item-description .file-subtitle {
  color: #3338;
  font-size: 1.2rem;
  font-weight: 700;
}

.file-list li:not(:first-child) {
  border-top: 1px solid #3338;
}

/*   Tablets   */
/*   Smartphones   */
@media only screen and (max-width: 450px) {
  #login-form-container #login-form {
    padding: 1rem;
  }
}
/*# sourceMappingURL=index.css.map */