@charset "UTF-8";

/* 
Typical Device Breakpoints
--------------------------
Pequenas telas: até 600px
Celular: de 601px até 768px
Tablet: de 769px até 992px
Desktop: de 993px até 1200px
Grandes telas: acima de 1201px
*/

:root {
  --lilas: #5f2c82;
  --verde: #49a09d;
}

@media screen and (min-width: 769px) and (max-width: 992px) {
  body {
    background-image: linear-gradient(to top, var(--verde), var(--lilas));
  }
  
  section#login {
    height: 280px;
    width: 80%;
  }

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

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

  div#formulario > p {
    font-size: 1.0em;
  }
}

@media screen and (min-width: 993px) {
  body {
    background-image: linear-gradient(to top, var(--verde), var(--lilas));
  }

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

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

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

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

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