@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,100;1,200;1,300;1,400;1,500;1,600;1,700&family=Roboto:wght@100&display=swap");
*, html {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  font-family: "Poppins";
}

.container {
  background: #1e1e1e;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-item-align: center;
      align-self: center;
  margin: auto;
}

.container .cardlogin {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-item-align: center;
      align-self: center;
  border-radius: 25px;
  height: 400px;
  width: 400px;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.container .cardlogin h2 {
  color: #C4C4C4;
  font-size: 18px;
  margin: 20px;
}

.container .cardlogin img {
  position: relative;
  bottom: 4em;
  height: 35px;
}

.container .cardlogin form {
  width: 100%;
  text-align: center;
}

.container .cardlogin form input {
  background: #3e3e3e;
  margin-bottom: 10px;
  border: none;
  width: 80%;
  border-radius: 25px;
  padding: 10px;
}

.container .cardlogin form button {
  margin-top: 25px;
  width: 125px;
  border-radius: 50px;
  height: 35px;
  border: none;
  color: white;
  background: #04DD33;
  font-size: 20px;
  cursor: pointer;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}

.container .cardlogin form button:hover {
  background: none;
  border: 1px solid #04DD33;
}

.container .cardlogin .req-senha {
  margin-top: 2em;
  text-decoration: none;
  color: #C4C4C4;
}
/*# sourceMappingURL=login.css.map */