* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* border: 1px solid red */
}
@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@300&family=Poppins:wght@200;400&display=swap");

body {
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: aqua;
}

.container {
  font-family: "Poppins", sans-serif;
  /* font-family: 'Outfit', sans-serif; */

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

form {
  width: 100%;
  height: 100%;
  background-color: white;
  padding: 10px;
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

form input {
  background-color: transparent;
  outline: none;
  border: none;
  font-size: 20px;
  width: 90%;
}

.show-hide-password {
  cursor: pointer;
  width: 25px;
  height: 25px;
  /* background-image: url(assets/eye.png);
  background-size: contain; */
}

.validator {
  font-size: 18px;
  padding: 16px;
  color: white;
  background-color: rgba(34, 0, 128, 0.517);
  border-radius: 10px;
}

ul {
  list-style-type: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

ul li {
  display: flex;
  gap: 10px;
}

.valid-or-not {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  transition: all 0.3s;
}

.valid-or-not span:first-child {
  display: block;
  width: 6px;
  height: 6px;
  background-color: white;
  border-radius: 50%;
  transition: all 0.3s;
}

.valid-or-not span:last-child {
  position: absolute;
  display: block;
  width: 16px;
  height: 16px;
  background-color: transparent;
  border: 2px solid white;
  border-radius: 50%;
  transition: all 0.3s;
}

.valid-or-not span.valid {
  background-color: yellow;
}

.valid-or-not span.valid:first-child {
  display: block;
  border-radius: 0;
  width: 18px;
  height: 3px;
  transform: rotateZ(135deg);
}
.valid-or-not span.valid:last-child {
  border: none;
  border-radius: 0;
  left: -4px;
  bottom: 10px;
  display: block;
  width: 8px;
  height: 3px;
  transform: rotateZ(40deg);
}
