@import url('https://fonts.googleapis.com/css?family=Muli:wght@400;700&display=swap');

body{
  font-family: 'Muli', sans-serif;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
     background: linear-gradient(#C6EA8D, #ffdde1);
}



.container{
  display: flex;
  flex-direction: column;
  background-color: rgb(205, 223, 205);

}
.header{
  background-color: rgb(216, 245, 216);
  border-bottom: 1px solid #f0f0f0;
  padding: 20px 40px;

}
.login{
  display: flex;
  flex-direction: column;
  padding: 30px;

}
.bottom{
  display: flex;
  flex-direction: column;
  align-items: center;
}
button{
  background-color: #000;
  border-radius: 4px;
  border: 2px solid #000;
  color: #fff;
  width: 80%;
  font-size: 16px;
  padding: 10px;
  cursor: pointer;
}
input{
    border: 2px solid darkgrey;
    padding: 10px;
    font-size: 14px;
    display: block;
    width: 100%;
}
p{
  padding: 0 auto 0 auto;
  display: inline-block;
  margin-bottom: 5px;
}
a{
  text-decoration: none;
  color: blue;
  cursor: pointer;
}
hr{
  border-style: none;
border-top-style: dotted;
border-color: grey;
border-width: 4px;
width: 18%;

}
