body {
  background-color: #378bda;
  background-size: 100%;
  overflow: hidden;
}

.header {
  display: flex;
  flex-direction: column;
  text-align: center;
}

p {
  color: black;
  font-family: Roboto;
}

.area-login {
  display: flex;
  height: 100vh;
  justify-content: center;
  align-items: center;
}

.login {
  display: flex;
  background-color: #f4f5f6;
  flex-direction: column;
  padding: 35px;
  align-items: center;

  border-radius: 5px;
}

.login form {
  display: flex;
  height: 100%;
  width: 100%;
  flex-direction: column;
}

.login input {
  margin-top: 12px;
  background-color: #ffff;
  color: #47474d;
  border: none;

  outline: none;

  border-radius: 5px;
  padding: 15px;
}

#logoIndex {
  width: 450px;
  margin-bottom: 16px;
  height: auto;
}

input::placeholder {
  color: #a8a8b3;
  font-size: 14px;
}

form [type="submit"] {
  display: block;
  background-color: #378bda;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: bold;

  color: #ffff;
}
form [type="submit"]:hover {
  transition: all 0.4s ease-in;
  background-color: #6aa0d3;
}
