/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

/* Body with Animated Gradient */
body {
  height: 100vh;
  overflow: hidden;

  background: linear-gradient(270deg, #1e3c72, #2a5298, #6a11cb, #2575fc);
  background-size: 600% 600%;
  animation: gradientMove 15s ease infinite;

  display: flex;
  justify-content: center;
  align-items: center;
}

/* Glow Effect */
body::before {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  background: rgba(255,255,255,0.15);
  filter: blur(120px);
  top: 15%;
  left: 10%;
}

body::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(255,255,255,0.1);
  filter: blur(100px);
  bottom: 10%;
  right: 10%;
}

/* Animation */
@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Card Container (Bigger Now) */
.card {
  width: 75%;
  max-width: 700px;
  min-height: 480px;
  background: #ffffff;
  padding: 50px 45px;
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
  text-align: center;
  position: relative;
  z-index: 1;
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-6px);
}

/* Logo */
.logo {
  width: 120px;
  margin-bottom: 10px;
}

/* Heading */
.card h2 {
  font-size: 40px;
  margin-bottom: 5px;
  color: #1e3c72;
}

/* Inputs */
.card input {
  width: 100%;
  padding: 15px;
  margin-bottom: 20px;
  border-radius: 10px;
  border: 1px solid #ddd;
  outline: none;
  font-size: 15px;
  transition: 0.3s;
}

.card input:focus {
  border-color: #2a5298;
  box-shadow: 0 0 8px rgba(42, 82, 152, 0.4);
}

/* Button */
.card button {
  width: 100%;
  padding: 15px;
  background: linear-gradient(45deg, #ff7a18, #ffb347);
  border: none;
  border-radius: 10px;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.card button:hover {
  background: linear-gradient(45deg, #ff5e00, #ffa500);
  transform: scale(1.03);
}

/* Success / Link */
.card a {
  color: #ff7a18;
  text-decoration: none;
  font-weight: bold;
}

.card a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .card {
    width: 90%;
    padding: 30px;
    min-height: auto;
  }

  .card h2 {
    font-size: 24px;
  }

  .card input,
  .card button {
    padding: 13px;
  }
}