@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");
* {
  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: #151f28;
}
.pecut {
  position: relative;
  width: 700px;
  height: 700px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.pecut i {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.pecut i:nth-child(1) {
  border-radius: 38% 62% 63% 37% / 41% 44% 56% 59%;
  animation: animate 6s linear infinite;
}
.pecut i:nth-child(2) {
  border-radius: 41% 44% 56% 59% / 38% 62% 63% 37%;
  animation: animate 10s linear infinite;
}
.pecut i:nth-child(3) {
  border-radius: 41% 44% 56% 59% / 38% 62% 63% 37%;
  animation: animate 14s linear infinite;
}
.pecut:hover i {
  border: 6px solid;
  filter: drop-shadow(0 0 20px);
  transition: 0.3s ease-in-out;
}
.pecut:hover i:nth-child(1) {
  --clr: #ff357a;
  border-color: var(--clr);
  filter: drop-shadow(0 0 20px var(--clr));
}
.pecut:hover i:nth-child(2) {
  --clr: #fff172;
  border-color: var(--clr);
  filter: drop-shadow(0 0 20px var(--clr));
}
.pecut:hover i:nth-child(3) {
  --clr: #0078ff;
  border-color: 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);
  }
}
.signup {
  position: absolute;
  width: 300px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 20px;
}
.signup h2 {
  font-size: 2em;
  color: #fff;
}
.signup .formInput {
  position: relative;
  width: 100%;
}
.signup .formInput input {
  position: relative;
  width: 100%;
  padding: 12px 20px;
  background: transparent;
  border: 2px solid #fff;
  border-radius: 40px;
  font-size: 1.2em;
  color: #fff;
  outline: none;
  box-shadow: none;
}
.signup .formInput input:focus {
  border: 2px solid #0078ff;
}
.signup .signupBtn input{
  width: 100%;
  background: #0078ff;
  padding: 12px 125px;
  background: linear-gradient(45deg, #34495e, #2c3e50) !important;
  border-radius: 40px;
  font-size: 1.2em;
  font-weight: 50px;
  color: #fff;
  outline: none;
  box-shadow: none;
  border: none;
  cursor: pointer;
  transition: 0.3s ease-in-out;
}
.signup .signupBtn input:hover{
  background: linear-gradient(
    45deg,
    #0078ff,
    #0056b3
  ) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3); 
  transition: 0.3s ease-in-out;
}
.signup .formInput input::placeholder {
  color: rgba(255, 255, 255, 0.75);
}

.signup .links {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}
.signup .links a {
  color: #fff;
  text-decoration: none;
}
.signup .links a:hover {
  color: #0078ff;
  font-size: 1.2em;
  transition: 0.3s ease-in-out;
}
