body {
  min-height: 100vh;
  width: 100%;
  padding: 0;
  background-color: var(--Silver);
  margin: 0;
  color: var(--Black);
  overflow: hidden;
}

.d {
  position: absolute;
  border-radius: 50%;
  box-shadow: 0 0 100px 50px var(--Shade-1);
  background-color: var(--Tint-1);
}

.d1 {
  width: 280px;
  height: 280px;
  top: 0;
  left: 0;
  transform: translate(-10%, -40%);
}

.d2 {
  width: 200px;
  height: 200px;
  bottom: 10%;
  left: 15%;
}

.d3 {
  width: 300px;
  height: 300px;
  top: 10%;
  right: 5%;
}

.filter {
  -webkit-backdrop-filter: bour(9px);
  backdrop-filter: blur(15px);
  width: 100%;
  height: 100%;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  top: 0;
}

.wrapper {
  background-color: rgb(255, 255, 255);
  display: flex;
  flex-direction: column;
  padding: 2rem;
  border-radius: 8px;
  width: 30%;
  box-shadow: var(--box-shadow-2);
}

form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.logo-site {
  display: flex;
  justify-content: center;
  transform: translateX(-2%);
  /* margin-bottom: 1rem; */
}

.logo-site a {
  width: max-content;
}


.input-field {
  position: relative;
}

.input-field label {
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  font-family: "Inter", sans-serif;
  font-size: var(--body4-size);
  line-height: var(--body2-line-height);
  pointer-events: none;
  transition: all 0.15s ease;
  color: var(--Grey);
}

.input-field input {
  width: 100%;
  height: 50px;
  background: var(--transparent);
  border: 1px solid;
  border-radius: 5px;
  font-size: var(--body3-size);
  padding: 10px;
}

.input-field input:focus~label,
.input-field input:valid~label {
  font-size: var(--body3-size);
  top: 1px;
  background-color: var(--White);
  color: var(--Black);
  padding: 0 5px 0 5px;
  transform: translateX(-2%);
  transform: translateY(-50%);
  transition: 0.15s ease;
  transition-property: box-shadow;
}

.input-field input:focus {
  background: none;
  transition: .1s;
  outline: none;
  transition-property: box-shadow;
}

.forget {
  display: flex;
  align-items: center;
  justify-content: space-between;

}

.forget a,
.register a {
  color: var(--Grey);
}

.forget label {
  display: flex;
  align-items: center;
}

.forget label p {
  margin-left: 8px;
}

.btn-in {
  font-size: var(--body2-size);
}

.register {
  text-align: center;
}