@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: linear-gradient(135deg, #1f1c2c, #928DAB);
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.main {
  text-align: center;
  animation: fadeIn 1s ease-in;
}

.title {
  font-size: 2.5rem;
  margin-bottom: 0.3rem;
}

.title span {
  color: #ffd93d;
  animation: pulse 1.5s infinite alternate;
}

.subtitle {
  font-size: 1.1rem;
  opacity: 0.8;
  margin-bottom: 2rem;
}

.buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.btn {
  border: none;
  padding: 14px 30px;
  font-size: 1rem;
  border-radius: 12px;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn.blue { background: #007BFF; }
.btn.green { background: #28a745; }
.btn.yellow { background: #f7b731; }

.btn:hover {
  transform: scale(1.08);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  from { opacity: 0.6; }
  to { opacity: 1; }
}

/* Form pages */
.container {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 0 25px rgba(0,0,0,0.2);
  animation: fadeIn 0.8s ease;
  width: 320px;
}

.container h2 {
  margin-bottom: 20px;
  text-align: center;
}

input {
  width: 100%;
  padding: 10px;
  border: none;
  border-radius: 8px;
  margin: 8px 0 18px;
  outline: none;
}

.submit-btn {
  width: 100%;
  background: #ffd93d;
  color: black;
  border: none;
  padding: 10px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.submit-btn:hover {
  background: #ffb400;
  transform: scale(1.05);
}

