body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background: linear-gradient(0deg, #ffffff 27.44%, #dae8ff 100%);
}

.body {
  font-family: TTCommons;
  height: 100vh;
  max-width: 90rem;
  display: flex;
  flex-direction: column;
  margin: auto;
  overflow: hidden;
  min-height: 55rem;
}
/* header */

.header {
  padding: 2.5rem 4rem;
}

.header__actions {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

/* nav */
nav {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  margin: auto 0;
  padding-top: 1rem;
  margin-top: 10vh;
}
.nav__title {
  font-style: normal;
  font-weight: 500;
  margin: 0;
  font-size: 5.125rem;
  line-height: 83%;
  text-align: center;
  letter-spacing: -0.01em;
  color: #202020;
}

.nav__description {
  max-width: 360px;
  font-style: normal;
  font-weight: normal;
  font-size: 1rem;
  line-height: 100%;
  text-align: center;
  color: #4a4a4a;
  margin: 0;
  margin-top: 0.8125rem;
}

.nav-feature {
  position: absolute;
  object-fit: contain;
}

.nav-feature--tennisdvs1 {
  top: 1rem;
  left: 11.875rem;
}

.nav-feature--sg1 {
  top: 11.875rem;
  left: 18.125rem;
}

.nav-feature--tennisdvs2 {
  right: 18.125rem;
  top: 8.375rem;
}

.nav-feature--sg2 {
  top: 1rem;
  right: 15rem;
}

/* main */

main {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: auto;
}

.form {
  display: flex;
  flex-direction: row;
}

/* form */
input {
  outline: none;
  background: #ffffff;
  border: 0.0625rem solid #ececec;
  box-sizing: border-box;
  border-radius: 0.1875rem;
  padding: 0.8125rem 1.0625rem;
  min-width: 19.5rem;
}
input::placeholder {
  font-size: 1rem;
  line-height: 1.125rem;
  color: #a8acb8;
}
.form-control {
  font-style: normal;
  font-weight: normal;
  font-size: 1rem;
  line-height: 1.125rem;
  color: #202020;
}

.btn {
  outline: none;
  border: none;
  padding: 0.8125rem 2.125rem;
  font-style: normal;
  font-weight: normal;
  font-size: 1rem;
  line-height: 1.125rem;
  cursor: pointer;
}

.btn-primary {
  background: #1e6ceb;
  border-radius: 0.1875rem;
  color: #ffffff;
}

.btn-primary--alt {
  border: 1px solid #1e6ceb;
  background-color: transparent;
  border-radius: 0.1875rem;
  color: #1e6ceb;
  font-size: 0.9375rem;
  line-height: 1.0625rem;
  padding: 0.9375rem 3.75rem;
}

.btn-login {
  margin-left: 0.5rem;
}
/* footer */

footer {
  margin: auto auto 0 auto;
  overflow: hidden;
  display: flex;
  justify-content: center;
  width: 100%;
  transform: translateY(100%);
  transition: transform 1s;
}

footer.img {
  max-width: 100%;
  min-width: 700px;
}

/* media */

@media screen and (max-width: 1182px) {
  .nav-feature--tennisdvs1 {
    top: 1rem;
    left: 3rem;
  }

  .nav-feature--sg1 {
    top: 11.875rem;
    left: 9rem;
  }

  .nav-feature--tennisdvs2 {
    right: 3rem;
    top: 8.375rem;
  }

  .nav-feature--sg2 {
    top: 1rem;
    right: 3rem;
  }
}

@media screen and (max-width: 950px) {
  .nav-feature--tennisdvs1 {
    left: 0;
  }

  .nav-feature--sg1 {
    left: 3rem;
  }

  .nav-feature--tennisdvs2 {
    right: 1rem;
  }

  .nav-feature--sg2 {
    right: 1rem;
  }
}

@media screen and (max-width: 768px) {
  .body {
    min-height: auto;
  }

  .header {
    padding: 1.25rem 2rem;
  }

  nav {
    margin-top: 7vh;
  }

  .nav__title {
    margin-top: 4rem;
    font-size: 2.5rem;
    line-height: 106%;
  }

  .nav__description {
    font-size: 1.125rem;
    line-height: 130%;
    margin-top: 1.8125rem;
  }
}

@media screen and (max-width: 500px) {
  .form {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .btn-login {
    margin-top: 1rem;
    margin-left: 0;
  }

  nav {
    margin: 0;
    padding: 0;
    margin-top: 10vh;
  }

  .nav-feature--tennisdvs1 {
    left: -2.6rem;
  }

  .nav-feature--sg1 {
    left: 0;
    top: 9rem;
  }

  .nav-feature--tennisdvs2 {
    right: -1rem;
    top: 7.375rem;
  }

  .nav-feature--sg2 {
    right: -1.7rem;
  }

  main {
    margin-top: 2rem;
  }
  footer {
    display: none;
  }
}

@media screen and (max-width: 320px) {
  .nav-feature {
    display: none;
  }
}

/* fonts */
@font-face {
  font-family: 'TTCommons';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('fonts/TTCommons-Black.ttf') format('ttf'),
    url('fonts/TTCommons-Black.woff') format('woff');
}

@font-face {
  font-family: 'TTCommons';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/TTCommons-Regular.ttf') format('ttf'),
    url('fonts/TTCommons-Regular.woff') format('woff');
}

@font-face {
  font-family: 'TTCommons';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('fonts/TTCommons-Bold.ttf') format('ttf'),
    url('fonts/TTCommons-Bold.woff') format('woff');
}
