@charset "UTF-8";

@media screen and (min-width: 768px) and (max-width: 992px) {
  body {
    background-image: linear-gradient(to top, #49a09d, #5f2c82);
  }

  section#login {
    width: 75vw;
    height: 300px;
  }

  section#login div#img {
    float: left;
    width: 30%;
    height: 100%;
  }

  section#login div#form {
    float: right;
    width: 70%;
    padding: 20px;
  }
}

@media screen and (min-width: 992px) {
  body {
    background-image: linear-gradient(to top, #49a09d, #5f2c82);
  }

  section#login {
    width: 950px;
    height: 400px;
  }

  section#login div#img {
    float: right;
    width: 50%;
    height: 100%;
  }

  section#login div#form {
    float: left;
    width: 50%;
    padding: 30px;
  }

  div#form h1 {
    font-size: 2rem;
  }

  div#form p {
    font-size: 1rem;
    margin: 20px 0;
  }
}
