body {
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(to bottom, #f0f8ff, #e6f2ff);
  color: #333;
  text-align: center;
  padding: 2rem;
  transition: background 1s ease;
}

header h1 {
  font-size: 2.5rem;
  color: #005f73;
}

.subtitle {
  font-style: italic;
  color: #0a9396;
  margin-bottom: 2rem;
}

#login-section input {
  padding: 0.5rem;
  font-size: 1rem;
  margin: 0.5rem;
}

#login-section button {
  padding: 0.5rem 1rem;
  background-color: #94d2bd;
  border: none;
  font-size: 1rem;
  cursor: pointer;
}

#message {
  margin-top: 1rem;
  font-weight: bold;
}

blockquote {
  font-size: 1.2rem;
  margin: 1rem auto;
  padding: 1rem;
  background-color: #dbeafe;
  border-left: 5px solid #3b82f6;
  max-width: 600px;
}

.floating-icons {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
  100% { transform: translateY(0); }
}

#affirmations ul {
  list-style: none;
  padding: 0;
  margin-top: 2rem;
}

#affirmations li {
  font-size: 1.1rem;
  margin: 0.5rem 0;
  color: #005f73;
}
