.app-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  height: 100vh;
}

.app-content__logo-form-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.app-content__logo {
  margin: 30px auto 40px;
  width: 60%;
  max-width: 220px;
}

@media only screen and (min-width: 1024px) {
  .app-content__logo-form-container {
    flex-direction: row;
    justify-content: space-around;
  }
  .app-content__logo {
    max-width: 300px;
    margin: 0;
  }
}

@media only screen and (min-width: 1280px) {
  .app-content__logo-form-container {
    margin-bottom: 85px;
  }
}

@media only screen and (min-width: 1400px) {
  .app-content__logo {
    max-width: 400px;
  }
}
