@charset "UTF-8";

/* Tablet */
@media screen and (min-width: 768px) and (max-width: 992px) {
  body {
    background-image: linear-gradient(
      to top,
      var(--cor-verde),
      var(--cor-roxo)
    );
  }

  section#login {
    width: 80%;
    height: 300px;
  }

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

  section#login div#cadastro {
    float: right;
    width: 70%;
  }

  div#cadastro p {
    font-size: 1rem;
  }
}

/* Grandes */
@media screen and (min-width: 992px) {
  body {
    background-image: linear-gradient(
      to top,
      var(--cor-verde),
      var(--cor-roxo)
    );
  }

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

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

  section#login div#cadastro {
    float: left;
    width: 50%;
  }

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

  div#cadastro p {
    font-size: 1.2rem;
    margin: 20px 0px;
  }
}
