body {
  background-image: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)), url("../backgrounds/background-1.jpg"); /* path to your image */
  background-size: cover; /* makes it cover the whole screen */
  background-repeat: no-repeat; /* prevents tiling */
  background-position: center; /* centers the image */
  height: 100vh;
  margin: 0;
  overflow: hidden;
}

.card {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px;
}

.rounded-ends {
  border-radius: 50px;
}

.password-eye {
  background-color: #8e959d !important;
  color: white !important;
  cursor: pointer;
  border: 0.5px solid #8e959d;
  border-top-right-radius: 50px !important;
  border-bottom-right-radius: 50px !important;
}
