body {
  background: rgb(1, 90, 250);
  background: linear-gradient(90deg, rgba(1, 90, 250, 1) 0%, rgba(68, 195, 247, 1) 49%, rgba(1, 90, 250, 1) 100%);
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  padding: 0;
}


.container-cx-login {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 350px;
  width: 580px;
  background-color: #fff;
  border-radius: 20px;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;
}

.container-login {
  width: 15rem;
  height: 298px;
  margin-left: -40px;
  margin-top: -20px;
  margin-bottom: 10px;
  padding: 20px;
  color: black;
  border-radius: 20px;

}

.form-group {
  display: flex;
  flex-direction: column;
}

.img-logo {
  width: 200px;
  margin-bottom: 20px;
margin-top: -10px;


}

.img-login {
width: 90%;
height: 90%;
z-index: 2;
border-radius: 20px;
box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;

}

label {
  display: block;
  font-size: 16px;
  color: #090909;
  margin-bottom: 5px;
}

input {
  width: 100%;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 8px;
}

h1 {
  color: #fff;
  font-size: 30px;
}

.senha {
  text-decoration: none;
  margin-top: -50px;
  margin-left: 40px;
  color: #050404;
  font-size: 14px;
}
.senha:hover {
  color: #f40909;
}

.olhinho {
  position: absolute;
  top: 40px;
  right: 10px;
  cursor: pointer;
}

.olhinho:hover {
  color: #666;
}

#eye {
  font-size: 18px;
}
#erro {
  color: red;
}
@media only screen and (max-width: 768px) {
  .img-login {
    display: none;
  }

  .container-cx-login {
    width: 300px;
  }
}