@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700&display=swap');

body {
  font-family: 'Nunito', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #1b1b1d; 
  color: #f5f6f7;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

body.fade-in {
  opacity: 1;
  transform: translateY(0);
}

.hero {
  margin: 2rem auto 3rem;
  text-align: center;
  max-width: 700px;
}
.title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
}
.subtitle {
  font-size: 1.2rem;
  color: #aaa;
  margin-top: 1rem;
  line-height: 1.5;
}

.features {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 2rem 0 3rem;
  flex-wrap: wrap;
}
.feature {
  background: #242526;
  border-radius: 12px;
  padding: 2rem;
  max-width: 280px;
  text-align: center;
  transition: transform 0.3s ease, background-color 0.3s ease;
}
.feature:hover {
  transform: translateY(-5px);
  background: #2c2d30;
}
.icon img {
  width: 64px;
  height: 64px;
  margin-bottom: 1rem;
}
.feature h2 {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
  color: #fff;
}
.feature p {
  color: #b3b3b3;
  font-size: 0.95rem;
}

.auth-btn {
  background-color: #4a76e8;
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.9rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 2px 6px rgba(0,0,0,0.4);
  display: inline-block;
  text-align: center;
}

.auth-btn:hover {
  background-color: #3b5acb;
  transform: translateY(-2px);
}

.footerNote {
  text-align: center;
  font-size: 0.9rem;
  color: #aaa;
  margin-bottom: 2rem;
}
.footerNote a {
  color: #4a76e8;
  text-decoration: none;
}
.footerNote a:hover {
  text-decoration: underline;
}
