* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background: url('../images/slider-1.jpg');
  background-size: cover;
  background-position: center;
}

.wrapper {
  width: 420px;
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  color: #fff;
  border-radius: 10px;
  padding: 30px 40px;
  min-height: 550px; 
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}


.wrapper h1 {
  font-size: 36px;
  text-align: center;
  margin-bottom: 20px;
  color: #fff;
}

.wrapper .input-box {
  position: relative;
  width: 100%;
  height: 50px;
  background-color: transparent;
  border-radius: 40px;
  margin: 25px 0;
}

.input-box input {
  width: 100%;
  height: 100%;
  background: transparent;
  border: 2px solid white;
  outline: none;
  border-radius: 45px;
  box-shadow: 0 0 10px rgb(255, 255, 255);
  font-size: 16px;
  color:white;
  padding: 20px 45px 20px 20px;
  margin-top: 40px;
}

.input-box input::placeholder {
  color: rgb(255, 255, 255);
}

.input-box i {
  position: absolute;
  right: 0px;
  top: 30%;
  transform: translate(-50%);
  font-size: 20px;
  margin-top: 40px;
  
}

.remember-forgot {
  display: flex;
  justify-content: space-between;
  font-size: 14.5px;
  margin: 0px 15px;
  margin-top: 60px;
}

.remember-forgot label input {
  accent-color: white;
  margin-right: 3px;
}

.remember-forgot a {
  /* please change one of the background or the text color into white */
  color: rgb(253, 185, 59);
  /* color: rgb(255, 255, 255); */
  text-decoration: none;
  cursor: pointer;
}

.remember-forgot a:hover {
  text-decoration: underline;
}

.wrapper .btn {
  width: 100%;
  height: 50px;
  background: white;
  border: none;
  outline: none;
  border-radius: 40px;
  box-shadow: 0 0 10px rgb(249, 249, 249);
  cursor: pointer;
  font-size: 20px;
  color: rgb(253, 185, 59);
  margin-top: 80px;
}

.wrapper .register-link {
  font-size: 14.5px;
  text-align: center;
  margin-top: 40px;
}

.register-link p {
  color: rgb(255, 255, 255);
}

.register-link p a {
  color:rgb(253, 185, 59);
  text-decoration: none;
  font-weight: 600;
}

.register-link p a:hover {
  text-decoration: underline;
}

.copyright {
  text-align: center;
  width: 100%;
  font-size: 14px;
  color: rgb(255, 255, 255);
  position: fixed;
  bottom: 10px;
  left: 0;
  right: 0;
  margin: 0 auto;
}
