:root {
  --main-green: #199864;
  --deep-green: #05CE7C;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

a {
  color: white;
}
a:hover {
  color: var(--main-green);
}

body {
  width: 100vw;
  overflow-x: hidden;
  height: 100vh;
  font-family: "TT Runs", sans-serif;
  padding: 0;
  margin: 0;
  background: black;
  color: white;
}

.container {
  padding: 0 1rem;
  max-width: 648px;
  margin: 0 auto;
}

.app {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  min-height: 100%;
}
.app-auth {
  background-image: url(./assets/img/bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

main {
  flex: 1 1 0;
}

.header-auth {
  margin-bottom: 60px;
  height: 60px;
  background-size: cover;
  background-repeat: no-repeat;
}

.footer-auth {
  margin-top: 60px;
  height: 60px;
}

@media (min-width: 768px) {
  .header-auth {
    margin-bottom: 80px;
  }
  .footer-auth {
    height: 60px;
    margin-top: 60px;
  }
}
@media (min-width: 992px) {
  .header-auth {
    height: 80px;
  }
  .footer-auth {
    height: 80px;
  }
  .container {
    max-width: 860px;
  }
}