@font-face {
  font-family: "NewHero-Medium";
  src: url("/content/fonts/NewHero-Medium.woff2");
}
@font-face {
  font-family: "NewHero-Bold";
  src: url("/content/fonts/NewHero-Bold.woff2");
}
@font-face {
  font-family: "NewHero-Medium";
  src: url("/content/fonts/NewHero-Medium.woff");
}
@font-face {
  font-family: "NewHero-Regular";
  src: url("/content/fonts/NewHero-Regular.woff");
}

*{
  box-sizing: border-box;
}
body {
  margin: 0;
  padding: 0;
}
.login-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  height: 100vh;
  width: 100vw;
  font-family: 'NewHero-Regular';
}
.login-container__header {
  width: 100%;
}
.login-container__header > img {
  width: 10rem;
  margin: 2rem;
  height: auto;
}
.login-container__inner {
  background: #f8f8f8;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2.5rem;
}

.logo-wrapper {
  min-height: 10rem;
}
img {
  width: 13rem;
  height: auto;
}
.login-actions {
  display: flex;
  width: 100%;
  margin: 2rem 0;
  font-family: 'NewHero-Regular';
}

a.login-actions__login {
  width: 100%;
  padding: 1rem;
  background-color: #30ea03;
  text-decoration: none;
  color: #000;
  text-align: center;
  vertical-align: middle;
}
a.login-actions__login:hover {
  background-color: #000;
  color: #fff;
}

.login-container__footer{
  padding: 1rem;
  width: 100%;
  text-align: center;
  background: #202020;
  color: #fff;
}
