@import url("https://fonts.googleapis.com/css2?family=Quicksand:wght@300&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Quicksand", sans-serif;
}
body {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background: linear-gradient(
    270deg,
    #ffffff,
    #f8f9fa,
    #f0f4f8,
    #e8f0f2,
    #f5f7fa
  );
  background-size: 800% 800%;
  animation: gradientShift 35s ease infinite;
  width: 100%;
  overflow-x: hidden;
  padding-top: 80px;
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.ring {
  position: relative;
  width: 500px;
  height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.ring i {
  position: absolute;
  inset: 0;
  border: 2px solid rgba(0, 137, 123, 0.3);
  transition: 0.5s;
}
.ring i:nth-child(1) {
  border-radius: 38% 62% 63% 37% / 41% 44% 56% 59%;
  animation: animate 6s linear infinite;
}
.ring i:nth-child(2) {
  border-radius: 41% 44% 56% 59%/38% 62% 63% 37%;
  animation: animate 4s linear infinite;
}
.ring i:nth-child(3) {
  border-radius: 41% 44% 56% 59%/38% 62% 63% 37%;
  animation: animate2 10s linear infinite;
}
.ring:hover i {
  border: 6px solid var(--clr);
  filter: drop-shadow(0 0 20px var(--clr));
}
@keyframes animate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes animate2 {
  0% {
    transform: rotate(360deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
.login {
  position: absolute;
  width: 300px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 20px;
}
.login h2 {
  font-size: 2em;
  color: #00897b;
  text-shadow: 0 2px 8px rgba(0, 137, 123, 0.3);
  font-weight: bold;
}
.login .inputBx {
  position: relative;
  width: 100%;
}
.login .inputBx input {
  position: relative;
  width: 100%;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(5px);
  border: 2px solid rgba(0, 137, 123, 0.4);
  border-radius: 40px;
  font-size: 1.2em;
  color: #00897b;
  box-shadow: 0 4px 12px rgba(0, 137, 123, 0.1);
  outline: none;
  transition: all 0.3s ease;
}

.login .inputBx input:focus {
  background: rgba(255, 255, 255, 0.25);
  border-color: #00897b;
  box-shadow: 0 4px 16px rgba(0, 137, 123, 0.2);
}
.inputB1 {
  width: 300px;
  background: #00897b;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 30px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  font-weight: bold;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}
.inputB1:hover {
  background-color: #006d61;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

.login .inputBx input[type="submit"] {
  width: 100%;
  background: #00897b;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.login .inputBx input[type="submit"]:hover {
  background: #006d61;
}
.login .inputBx input::placeholder {
  color: rgba(0, 137, 123, 0.6);
}
.login .links {
  display: none;
}
