/* Auth Container */
.auth-container {
  width: 350px;
  padding: 2rem;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.2);
  text-align: center;
  animation: fadeIn 0.8s ease-in-out;
}

/* Auth Heading */
.auth-container h2 {
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
}

/* Inputs */
.auth-container input {
  width: 100%;
  padding: 12px 15px;
  margin: 10px 0;
  border: 1px solid #ddd;
  border-radius: 12px;
  outline: none;
  transition: 0.3s;
  font-size: 15px;
}

.auth-container input:focus {
  border-color: #4facfe;
  box-shadow: 0 0 8px rgba(79, 172, 254, 0.4);
}

/* Submit Button */
.auth-container button {
  width: 100%;
  padding: 12px;
  margin-top: 15px;
  border-radius: 12px;
  background: linear-gradient(135deg, #4facfe, #00f2fe);
  color: #fff;
  font-size: 16px;
}

.auth-container button:hover {
  background: linear-gradient(135deg, #00f2fe, #4facfe);
  box-shadow: 0px 6px 18px rgba(0, 0, 0, 0.2);
}

/* Links below form */
.auth-container .links {
  margin-top: 20px;
  font-size: 14px;
}

/* Fade-in Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
