@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

body {
  font-family: 'Poppins', sans-serif;
  background: radial-gradient(circle at top left, #6a11cb, #2575fc);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  overflow: hidden;
  background-size: 180% 180%;
  animation: gradient-animation 5s ease infinite;
}
@keyframes gradient-animation { 
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}
.container {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 3rem 4rem;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
  animation: popIn 1s ease;
}

h1 {
  color: white;
  font-size: 2.3rem;
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
}

.subtitle {
  color: #dcdde1;
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.search-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  padding: 0.4rem;
  transition: all 0.3s ease;
}

.search-bar input {
  border: none;
  outline: none;
  background: transparent;
  color: #fff;
  padding: 0.8rem 1rem;
  width: 200px;
  font-size: 1rem;
  transition: width 0.4s ease;
}

.search-bar input:focus {
  width: 250px;
}

.search-bar button {
  border: none;
  background: linear-gradient(135deg, #00cec9, #0984e3);
  color: #fff;
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.search-bar button:hover {
  transform: scale(1.08);
  box-shadow: 0 0 15px rgba(0, 206, 209, 0.6);
}

.note {
  color: #fff;
  margin-top: 2rem;
  font-size: 0.95rem;
  opacity: 0.8;
}

/* Animations */
@keyframes popIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
