

/* Made by Dip.dev */



* {
  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: rgb(93, 93, 93) no-repeat;
  background-size: cover;
  background-position: center;
}
.container {
  width: 420px;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.427);
  backdrop-filter: blur(20px);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  color: white;
  border-radius: 10px;
  padding: 30px 40px;
}
.container h1 {
  font-size: 36px;
  text-align: center;
}

.container .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(255, 255, 255, 0.2);
  border-radius: 40px;
  font-size: 16px;
  color: #fff;
  padding: 20px 45px 20px 20px;
}
.input-box input::placeholder {
  color: #fff;
}
.input-box i {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
}
.container .remember-forget {
  display: flex;
  justify-content: space-between;
  font-size: 15px;
  margin: -15px 0 15px;
}
.remember-forget label input {
  accent-color: #fff;
  margin-right: 3px;
}
.remember-forget a {
  color: #fff;
  text-decoration: none;
}
.remember-forget a:hover {
  text-decoration: underline;
}
.container .btn {
  width: 100%;
  height: 45px;
  background: #fff;
  border: none;
  outline: none;
  border-radius: 40px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  font-size: 16px;
  color: #000000;
  font-weight: 600;
  text-shadow: 3px 2px 4px rgb(245, 93, 93);
}
.container .register-link {
  font-size: 14px;
  text-align: center;
  margin: 20px 0 15px;
}
.register-link a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}
.register-link a:hover {
  text-decoration: underline;
}
footer {
  color: #fff;
  position: absolute;
  left: 0;
  bottom: 0;
  border: 1px;
  margin: 10px 0 10px 10px;
}
h3 {
  color: red;
  cursor: pointer;
}
.dip {
  background-color: red;
  display: inline;
}
.bx-link {
  color: rgb(0, 0, 0);
  background-color: white;
  cursor: pointer;
  text-decoration: none;
  border: 1px solid black;
  border-radius: 20px;
}
.bx-link:hover {
  text-decoration: underline;
  text-decoration-color: white;
}
