*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

.copyright {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 15px;
    color: #fff;
}
body{
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  align-items: right;
  min-height: 100vh;
  background: url(bg.jpg) no-repeat;
  background-size: cover;
  background-position: right;
  padding: 0 0 50px 50px;
}
.wrapper{
  width: 420px;
  background: rgba(255, 255, 255, 0.6);
  border: 2px solid rgba(255, 255, 255, .2);
  backdrop-filter: blur(9px);
  color: #0076a3;
  border-radius: 4px;
  padding: 30px 40px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.wrapper h1{
  font-size: 36px;
  text-align: center;
}
.wrapper .input-box{
  position: relative;
  width: 100%;
  height: 50px;
  margin: 30px 0;
}
.input-box input{
  width: 100%;
  height: 100%;
  background: transparent;
  border: none;
  outline: none;
  border: 2px solid rgba(0, 118, 163, .2);
  border-radius: 4px;
  font-size: 16px;
  color: #0076a3;
  padding: 20px 45px 20px 20px;
}
.input-box input::placeholder{
  color: #0076a3;
}
.input-box i{
  position: absolute;
  right: 20px;
  top: 30%;
  transform: translate(-50%);
  font-size: 20px;

}
.wrapper .remember-forgot{
  display: flex;
  justify-content: space-between;
  font-size: 14.5px;
  margin: -15px 0 15px;
}
.remember-forgot label input{
  accent-color: #0076a3;
  margin-right: 3px;

}
.remember-forgot a{
  color: #0076a3;
  text-decoration: none;

}
.remember-forgot a:hover{
  text-decoration: underline;
}
.wrapper .btn{
  width: 100%;
  height: 45px;
  background: #fff;
  border: none;
  outline: none;
  border-radius: 4px;
  box-shadow: 0 0 10px rgba(0, 0, 0, .1);
  cursor: pointer;
  font-size: 16px;
  color: #333;
  font-weight: 600;
}

.wrapper .btn:hover {
  background: #0076a3;
  color: #fff;
}

.wrapper .register-link{
  font-size: 14.5px;
  text-align: center;
  margin: 20px 0 15px;

}
.register-link p a{
  color: #000;
  text-decoration: none;
  font-weight: 600;
}
.register-link p a:hover{
  text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 1266px) {
  body {
    justify-content: center; /* Center the wrapper on tablets */
    align-items: center;
    padding: 20px; /* Adjust padding */
  }
  .wrapper {
    width: 90%; /* Make wrapper width responsive */
    margin: auto; /* Center the wrapper */
  }
  .wrapper h1 {
    font-size: 28px; /* Adjust heading size */
  }
  .copyright {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  body {
    justify-content: center; /* Center the wrapper on smartphones */
    align-items: center;
    padding: 10px; /* Adjust padding */
  }
  .wrapper {
    width: 100%; /* Make wrapper use full width on smaller screens */
    margin: auto; /* Center the wrapper */
  }
  .wrapper h1 {
    font-size: 24px; /* Adjust heading size for smaller devices */
  }
  .input-box input, .wrapper .remember-forgot, .wrapper .btn, .wrapper .register-link {
    font-size: 14px; /* Smaller font size for better readability */
  }
  .copyright {
    font-size: 8px;
    }
}

@media (max-width: 280px) {
  body {
    justify-content: center; /* Center the wrapper on tablets */
    align-items: center;
    padding: 10px; /* Adjust padding */
  }
  .wrapper {
    width: 90%; /* Make wrapper width responsive */
    margin: auto; /* Center the wrapper */
  }
  .wrapper h1 {
    font-size: 18px; /* Adjust heading size */
  }
  .copyright {
    font-size: 6px;
  }
}

.error-message {
    color: red;
}

canvas#dotCanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
