body {
  margin: 0;
  padding: 0;
  font-family: 'Baloo 2', cursive;
  background: linear-gradient(135deg, #a8edea, #fed6e3);
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.background-decor {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
  z-index: 0;
}

.circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  animation: float 6s ease-in-out infinite;
}

.circle:nth-child(1) {
  width: 120px;
  height: 120px;
  top: 10%;
  left: 15%;
}

.circle:nth-child(2) {
  width: 200px;
  height: 200px;
  bottom: 10%;
  right: 20%;
  animation-delay: 2s;
}

.circle:nth-child(3) {
  width: 80px;
  height: 80px;
  top: 60%;
  left: 25%;
  animation-delay: 1s;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

.login-container {
  position: relative;
  background-color: #fff;
  border-radius: 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  padding: 70px 80px;
  width: 480px;
  text-align: center;
  z-index: 1;
}

.logo {
  position: absolute;
  top: 25px;
  right: 25px;
  width: 80px;
  height: 80px;
}

h1 {
  font-size: 36px;
  color: #ff6f61;
  margin-bottom: 25px;
  letter-spacing: 1px;
  text-shadow: 2px 2px 6px rgba(255, 111, 97, 0.4);
}

input[type="text"],
input[type="password"],
input[type="number"] {
  width: 100%;
  padding: 16px;
  margin: 14px 0;
  border: 3px solid #ffd1dc;
  border-radius: 25px;
  font-size: 18px;
  transition: 0.3s;
}

input[type="text"]:focus,
input[type="password"]:focus,
input[type="number"]:focus {
  border-color: #ff6f61;
  outline: none;
  box-shadow: 0 0 15px rgba(255, 111, 97, 0.4);
}

button {
  width: 100%;
  background-color: #ff6f61;
  border: none;
  color: white;
  padding: 16px;
  border-radius: 25px;
  font-size: 22px;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.2s;
}

button:hover {
  background-color: #ff8566;
  transform: scale(1.05);
}

.footer-text {
  margin-top: 25px;
  font-size: 16px;
  color: #777;
}

.footer-text a {
  color: #ff6f61;
  text-decoration: none;
  font-weight: 700;
}

.footer-text a:hover {
  text-decoration: underline;
}
