body{
  font-family: "Poppins", serif;
}

.form-login{
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url("/image/web/hero.png");
  height: 100vh;
  width: 100vw;
}

.form{
  background-color: white;
  border-radius: 10px;
  padding: 20px;
  width: 400px;
}

.image{
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
}

.image img{
  width: 55px;
  height: 65px;
}

h1{
  font-size: 25px;
  font-weight: 700;
  text-align: center;
  color: #1AA1F5;
}

.explain{
  font-size: 14px;
  text-align: center;
  color: gray;
  margin-bottom: 20px;
}

.button-login{
  width: 100%;
  margin-top: 10px;
  margin-bottom: 10px;
}

.forget-password{
  text-align: center;
  text-decoration: none;
  font-size: 14px;
}

a{
  text-decoration: none;
}

.contact{
  margin-top: 20px;
}

.contact p{
  text-align: center;
  font-size: 14px;
  color: rgb(58, 58, 58);
  margin-bottom: 1px;
}

.contact a{
  background-color: #26cb46;
  color: white;
  width: 100%;
  display: block;
  text-align: center;
  padding: 5px;
  border-radius: 5px;
}

.fail{
  background-color: #f6454574;
  padding: 10px;
  border-radius: 2px;
  text-align: center;
  margin-bottom: 20px;
}

.hide-fail{
  visibility: hidden;
  position: absolute;
}

.fail p{
  color: rgb(212, 43, 43);
  margin-bottom: 0;
}