* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: url("./img/image.png");
  background-size: cover;
  background-position: center;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.container {
  width: 420px;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(20px);
  border-radius: 10px;
  padding: 30px 40px;
  box-shadow: 0 0 10px rgb(0, 0, 0, 0.2);
  color: #fff;
}
.container h1 {
  font-size: 36px;
  text-align: center;
  color: #fff;
}
.input-box {
  position: relative;
  width: 100%;
  height: 50px;
  margin: 30px 0px;
}
.input-box input {
  width: 100%;
  height: 100%;
  background: transparent;
  border: none;
  outline: none;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  font-size: 16px;
  color: #fff;
  padding: 20px 45px 20px 20px;
}
.input-box input::placeholder {
  color: #c5c5c5;
}

.input-box img {
  position: absolute;
  right: 20px;
  margin-top: 5px;
  transform: translate(-50%);
  top: 20%;
  font-size: 20px;
}
.remember-forgot {
  display: flex;
  justify-content: space-between;
  margin: -15px 0 15px;
}
.remember-forgot label input {
  accent-color: #fff;
  margin-right: 5px;
}
.remember-forgot a {
  text-decoration: none;
  color: #fff;
}
.remember-forgot a:hover {
  text-decoration: underline;
}

.login {
  width: 100%;
  height: 50px;
  background-color: #895bc2;
  border: none;
  border-radius: 40px;
  color: #fff;
  font-weight: 500;
  margin-top: 24px;
  cursor: pointer;
  outline: none;
  font-size: 16px;
  box-shadow: 0 0 10px rgb(0, 0, 0, 0.1);
}
.login:hover {
  background-color: transparent;
  border: 2px solid rgb(255, 255, 255, rgba(255, 255, 255, 0.2));
  color: #fff;
  transition: 0.5s;
}
.register-link p {
  font-size: 16px;
  color: #fff;
  font-weight: 300;
}
.register-link {
  text-align: center;
  margin: 20px 0 15px;
  font-size: 14px;
}
.register-link a {
  font-size: 16px;
  color: #38033e;
  font-weight: 700;
  text-decoration: none;
}
.register-link a:hover {
  text-decoration: underline;
}
