* {
  margin: 0;
  padding: 0;
}
body {
  background: rgb(9, 212, 219);
  background: linear-gradient(81deg, rgba(9, 212, 219, 1) 0%, rgba(79, 82, 255, 1) 53%, rgba(0, 212, 255, 1) 100%);
  height: 100vh;
  display: flex;

  font-family: "Roboto", sans-serif;
}

.main-panel {
  display: flex;
  justify-content: center;
  min-height: 70%;
  padding: 10px;
  width: 70%;
  background-color: #fbfbfb;
  margin: auto;
  border-radius: 5px;
  box-shadow: 0 5px 20px 0 rgba(0, 0, 0, 0.2);
}

.form-login {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.form {
  margin: auto;
}

.form > h4 {
  font-size: 24px;
  font-weight: 100;
}

.form > p {
  font-size: 16px;
  font-weight: 100;
  margin-bottom: 20px;
}

.form-group label {
  font-size: 18px;
  font-weight: 100;
}

.form-group input {
  display: block;
  border: solid 1.5px #766f6f;
  border-radius: 5px;
  width: 400px;
  height: 40px;
  margin: 20px 0;
  padding: 5px;
  box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.2);
}

.form-group input:hover {
  border: solid 1.5px #4f52ff;
  box-shadow: 0 5px 5px 0 rgba(79, 82, 225, 0.3);
  transition: ease-in 0.5s;
  cursor: pointer;
}

.form-group input:active {
  color: #4f52ff;
}

button[type="submit"] {
  background-color: #4f52ff;
  padding: 20px 100px;
  margin: 20px auto;
  border: solid 1px #4f52ff;
  border-radius: 5px;
  color: #ffff;
  box-shadow: 0 5px 5px 0 rgba(79, 82, 225, 0.3);
  transition: ease-in 0.3s;
}

button[type="submit"]:hover {
  background-color: #ffff;
  border: solid 1px #4f52ff;
  color: #4f52ff;
  box-shadow: 0 5px 5px 0 rgba(79, 82, 225, 0.3);
}

.footer {
  text-align: center;
}

.footer img {
  margin-right: 5px;
}

.cover-login {
  width: 80%;
}

.title {
  margin-top: 70px;
  color: #187dc1;
}

.title > h3 {
  font-size: 32px;
}

.title > h3 > span {
  color: #61bd6d;
}

.title > p {
  font-size: 18px;
}
