/* stylelint-disable
	selector-no-id,
	selector-id-pattern,
	selector-class-pattern */
body {
  background-color: #eaeaea;
  display: flex;
  justify-content: center;
  align-items: center;
}

.fullscreen {
  width: 100%;
  height: 100%;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.news-titles {
  opacity: 0.075;
  position: absolute;
  top: 0;
  z-index: -1;
  left: 0;
  right: 0;
  bottom: 0;
}
.news-titles__title {
  position: absolute;
  max-width: 500px;
  animation-name: animatedTitles;
  animation-duration: 0.75s;
  animation-fill-mode: forwards;
  opacity: 0;
}
.news-titles__title p {
  margin: 0;
  background: #fafafa;
  padding: 0.2em 1em;
  box-shadow: 1px 1px 3px #d8d8d8;
  text-transform: uppercase;
}

#login {
  background: #051c2d;
  padding: 40px 30px;
  z-index: 2;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.2);
}
#login h1 a {
  background-image: url(../../images/logos/nba-primary-logo.svg);
  width: 100%;
  min-height: 150px;
  margin-bottom: 40px;
  background-size: contain;
}
.interim-login #login {
  padding: 25px 20px;
  margin: 0;
}

.login #login_error,
.login .message {
  border-left: 4px solid #8b2331;
  color: #051c2d;
}
.login form {
  background: none;
  border: none;
  box-shadow: none;
  padding: 0;
}
.login label {
  color: #fff;
}
.login #backtoblog a,
.login #nav a {
  color: #fff;
}
.login #backtoblog a:hover,
.login #nav a:hover {
  color: #bfbfbf;
}

input[type=text]:focus,
input[type=password]:focus,
input[type=checkbox]:focus {
  border-color: #d0e8fa;
  box-shadow: 0 0 2px rgba(5, 28, 45, 0.8);
}

input[type=checkbox]:checked::before {
  color: #051c2d;
}

.wp-core-ui .button-primary {
  background: black;
  border-color: black;
  box-shadow: 0 1px 0 #051c2d;
  text-shadow: 0 -1px 1px #110406, 1px 0 1px black, 0 1px 1px black, -1px 0 1px black !important;
}
.wp-core-ui .button-primary:hover {
  background: #020e16;
  border-color: #020e16;
}

@keyframes animatedTitles {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/*# sourceMappingURL=login.css.map */
