/* Full-screen purple gradient background */
body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, #8e2de2, #4a00e0);
  color: #fff;
  margin: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Main container (Glassmorphism card) */
.container {
  background: rgba(255, 255, 255, 0.1);
  padding: 40px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  width: 90%;
  max-width: 420px;
  animation: fadeIn 0.8s ease;
}

/* Fade-in animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Title */
h1 {
  font-weight: 600;
  margin-bottom: 5px;
  font-size: 1.6rem;
}

/* Subtitle */
.subtitle {
  font-size: 0.95rem;
  color: #f0f0f0;
  margin-bottom: 25px;
}

/* Form Labels */
.input-label,
label {
  display: block;
  margin-top: 12px;
  font-weight: 500;
  text-align: left;
}

/* Inputs */
input[type="file"],
input[type="number"] {
  width: 100%;
  padding: 10px;
  margin-top: 6px;
  border: none;
  border-radius: 6px;
  outline: none;
  font-size: 0.9rem;
}

input[type="file"] {
  background: #fff;
  color: #333;
}

input[type="number"] {
  background: rgba(255, 255, 255, 0.85);
}

/* Button (Orange glow button) */
.btn {
  margin-top: 25px;
  padding: 14px 20px;
  border: none;
  border-radius: 8px;
  background: #ff7a18;
  color: white;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.3s ease;
  width: 100%;
}

.btn:hover {
  background: #ff5200;
  transform: scale(1.05);
}

/* Footer */
.footer {
  margin-top: 25px;
  font-size: 0.85rem;
  color: #ddd;
}
