* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  background-color: #f5f5f5;
}

.container {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.logo {
  height: 100px;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-content: center;
  justify-content: center;
  margin: 64px 0;
}

.logo > span {
  width: 1px;
  height: 100%;
  background-color: #dcdcdc;
  margin: 0 24px;
}

.logo > p {
  color: #3366ff;
  font-size: 48px;
  font-family: "Hind", sans-serif;
  font-weight: 500;
  margin: 0;
  align-self: center;
}

.title {
  text-align: center;
  font-size: 32px;
  font-family: "Hind", sans-serif;
  font-weight: 300;
  color: #191919;
  margin: 64px 0 32px 0;
}

.login {
  width: 100%;
  padding: 10px 0;
  position: relative;
}

.login > div:not(.alert) {
  max-width: 412px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0 auto;
}

.alert {
  background-color: #fff;
  display: flex;
  align-content: center;
  position: absolute;
  width: 100%;
  height: 94px;
  border: 1px solid #ff7777;
}

.alert > img {
  margin: 0 20px 0 40px;
  width: 47px;
  height: 47px;
  align-self: center;
}

.alert > p {
  margin: 0;
  align-self: center;
  font-family: "Hind", sans-serif;
  color: #ff7777;
}

.user,
.password {
  font-family: "Hind", sans-serif;
  font-size: 18px;
  font-weight: 400;
  padding: 12px;
  border: 1px solid #dcdcdc;
  outline: none;
  border-radius: 10px;
  margin-bottom: 16px;
  color: #4d4d4d;
}

.user::placeholder,
.password::placeholder {
  color: #d0d0d0;
}

.send {
  background-color: #3366ff;
  color: #fff;
  font-family: "Hind", sans-serif;
  font-size: 18px;
  padding: 12px;
  border: 0;
  outline: none;
  font-weight: 400;
  border-radius: 10px;
  margin-top: 16px;
  box-shadow: 0px 4px 0px 0px #3366ff30;
  cursor: pointer;
  transition: background-color 300ms;
}

.send:hover {
  background-color: #0040d3;
}

.forgot-password {
  font-family: "Hind", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #b3b3b3;
  text-align: center;
  margin-top: 24px;
  text-decoration: none;
  transition: color 300ms;
}

.forgot-password:hover {
  color: #808080;
}

.relatorios {
  width: 100%;
  display: flex;
  justify-content: center;
}

.relatorio {
  background-color: #3366ff;
  color: #fff;
  font-family: "Hind", sans-serif;
  font-size: 18px;
  padding: 12px;
  border: 0;
  outline: none;
  font-weight: 400;
  border-radius: 10px;
  margin-top: 16px;
  box-shadow: 0px 4px 0px 0px #3366ff30;
  cursor: pointer;
  width: 100%;
  transition: all 300ms;
}

.relatorio:hover {
  background-color: #0040d3;
}
