@charset "UTF-8";

/* Paleta de Cores
   Verde: #49a09d
   Lilás: #5f2c82
*/
* {
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu,
    Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
}
body,
html {
  background-color: #5f2c82;
  height: 100vh;
  width: 100vw;
}

main {
  height: 100vh;
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
}

#formulário h1 {
  text-align: center;
}

section#login {
  display: flex;
  flex-direction: column; 
  width: 300px;
  height: auto;

  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.185);
}


section#login > div#imagem {
  width: 100%;
  height: 200px;

  background: url("../imgs/metal.jpg");
  background-size: cover;
  background-position: center;
}

#formulario {
  width: 100%;
  padding: 20px;
}

#login{
  transition: all 0.4s ease;
}

label {
  background-color: #5f2c82;
  color: white;
  padding: 10px;
  border-radius: 5px;
}

input {
  width: 85%;
  padding: 10px;
  margin: 10px 0;
  border: 2px solid #5f2c82;
  border-radius: 5px;
  background-color: #94cfcd;
}

#entrar {
  width: 100%;
  padding: 10px;
  background-color: #53aaa7;
  color: white;
  border: none;
  border-radius: 10px;
  margin-bottom: 10px;
}

#entrar:hover{
  background-color: #3e7e7c;
}

#reset {
  width: 100%;
  padding: 10px;
  color: #53aaa7;
  border: 1px solid #53aaa7;
  border-radius: 10px;
}

#reset:hover{
  background-color: rgb(223, 223, 223);
}

@media screen and (min-width: 820px){
  body {
    height: 100vh;
    margin: 0;
    background: linear-gradient(
      180deg,
      #5e4b8b 0%,
      #5a5aa0 40%,
      #4f7fa3 70%,
      #4fa3a3 100%
    );
  }

  section#login {
    flex-direction: row; 
    width: 800px;
    height: 500px;
  }

  section#login > div#imagem {
    width: 50%;
    height: 100%;
  }
  input{
    margin-top: 35px;
  }
  #entrar{
    margin-top: 40px;
  }

  #formulario {
    width: 60%;
  }

  #login{
    transform: scale(1.02);
  }
}


