body {
  background: #0094d8;
}

.login-wrapper {
  display: flex;
  justify-content: space-evenly;
  padding: 5%;
  flex-direction: column;
  align-items: center;
  height: 100vh;
}

.login-wrapper img {
  width: 100%;
  margin-bottom: 4rem;
}

.login-form {
  padding: 3rem;
  border-radius: 30px;
  background: white;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px,
    rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px,
    rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
  width: 40% !important;
  max-width: 40% !important;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.header {
  display: flex;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.header h1 {
  font-size: 3.7rem;
}

.form-body {
  display: flex;
  flex-direction: column;
}

.login-button {
  height: 4rem;
  width: 10rem;
  padding: 8px;
  background-color: #0094d8;
  color: white !important;
  border: none;
  cursor: pointer;
  font-size: 18px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  font-size: 1.5rem;
  line-height: 45px;
  border-radius: 20px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.login-button:hover {
  color: white !important;
}

/* CSS rules for mobile */
@media only screen and (max-width: 768px) {
  div#app {
    width: 100%;
    height: 100%;
  }

  #app .login-wrapper {
    height: 100%;
  }

  .login-wrapper .login-form {
    border-radius: 2rem;
    gap: 2rem;
    padding: 2rem;
    width: 95% !important;
    max-width: 95% !important;
  }

  .login-form img {
    margin: 0px;
  }

  .login-form .header {
    margin: 0px;
  }

  .header h1 {
    margin: 0px;
    font-size: 3rem;
  }

  .login-form .form-body {
    width: 100%;
  }

  .form-body .login-button {
    width: 100%;
    height: 100%;
    padding: 0.5rem;
    font-size: 1.5rem;
  }
}
