@charset "UTF-8";

/* Typical Device Breakpoints 
------------------------------
Pequenas telas: Até 480px
Celular: 481px a 767px
Tablet: 768px a 1023px
Desktop: 1024px a 1279px
Grandes telas: Acima de 1280px
------------------------------
*/

@media screen and (min-width: 768px) and (max-width: 1023px) {
  body { /* CONFIGURAÇÃO PARA TABLET */
    background-image: linear-gradient(to top #49a09d, #5f2c82);
  }

  section#login {
    width: 80vw;
    height: 280px;
  }

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

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

@media screen and (min-width: 1024px) {
  body { /* CONFIGURAÇÃO PARA DESKTOP */
    background-image: linear-gradient(to top #49a09d, #5f2c82);
  }

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

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

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

  div#formulario>h1 {
    font-size: 2em;
  }

  div#formulario>p {
    font-size: 1em;
    margin: 10px 0px;
  }
}