
/* ================ RESET ================ */
*,
*::before,
*::after{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html{
  scroll-behavior: smooth;
}
body{
  background-color: rgb(31, 31, 31);
  min-height: 100vh;
  font-family: sans-serif;
  line-height: 1.5;
}
/* Normaliza cabeçalhos */
h1, h2, h3, h4, h5, h6, p{
  font-family: poppins;
}
/* Remove estilo padrão de listas */
ul, ol{
  list-style: none;
}
p{
  font-size: 14px;
}
/* ira espaçamento automático entre elementos inline */
p + p{
  margin-top: 0.5rem;
}
/* Remove sublinhado e herda cor */
a{
  text-decoration: none;
  color: inherit;
}
/* Imagens responsivas */
img{
  max-width: 100%;
  display: block;
}
button{
    color:none;
    background-color: none;
}
.form {
    border-radius: 15px;
    background-color: #cfcfcf;
    max-width: 300px;
}
#formulario-base{
    border-radius: 15px;
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    width: 100%;
    min-height: 300px;
    align-items: center;
}
.formulario-grupo {
    border-radius: 20px;
    background-color: aliceblue;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.formulario-campo{
    align-content: center;
    align-items: flex-start;
}
.formulario-usuario{
    min-width: 200px;
}
.formulario-senha{
     min-width: 200px;
}
.formulario-btn{
     margin-top: 12px;
    /*background-color: #262626;*/
    align-items: center;
    padding: 4px 12px;  
}
.formulario-btn.button{
    color:rgb(0, 0, 0);
}
.btn-enviar {
    border-radius: 30px;
    padding: 6px 20px;
    background-color: #212728;
    color: #ffffff;
}