/* index.css - Index page specific styles */

body {
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('../img/ChatGPT\ Image\ Jan\ 29\,\ 2026\,\ 12_29_40\ PM.png') center/cover no-repeat;
}

.login-container {
  text-align: center;
  max-width: 700px;
  width: 100%;
  padding: 2rem;
}

.logo-section {
  margin-bottom: 3rem;
  animation: fadeInDown 1s ease-out;
}

.logo-container {
  display: inline-block;
  margin-bottom: 1rem;
}

.logo-img {
  width: 100%;
  max-width: 300px;
  height: auto;
  filter: drop-shadow(0 10px 30px var(--primary-40));
  transition: transform 0.3s ease;
}

.motto {
  color: var(--primary);
  font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 2.5rem;
  text-shadow: 2px 2px 15px rgba(0, 0, 0, 0.8);
  animation: fadeIn 1.5s ease-out;
}

.login-button {
  background: var(--primary);
  font-size: 1rem;
  padding: 0.875rem 4rem;
  border-radius: 5px;
  letter-spacing: 2px;
  box-shadow: 0 5px 20px var(--primary-40);
  margin-bottom: 1.5rem;
  cursor: pointer;
}

.login-button:hover {
  background: var(--primary-dark);
}

.footer-links {
  margin-bottom: 2rem;
}

.footer-links a {
  color: var(--text-light);
  font-size: 0.9rem;
  margin: 0 0.75rem;
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-links span {
  color: rgba(255, 255, 255, 0.3);
  margin: 0 0.5rem;
}

@media (max-width: 768px) {
  .logo-img {
    max-width: 250px;
  }

  .motto {
    font-size: 1.4rem;
    letter-spacing: 2px;
  }

  .login-button {
    padding: 0.75rem 3rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  .login-container {
    padding: 1rem;
  }

  .logo-img {
    max-width: 200px;
  }

  .motto {
    font-size: 1.1rem;
    letter-spacing: 1.5px;
    margin-bottom: 2rem;
  }

  .login-button {
    padding: 0.65rem 2.5rem;
    font-size: 0.85rem;
  }

  .footer-links a {
    font-size: 0.8rem;
    display: inline-block;
    margin: 0.25rem 0.5rem;
  }

  .footer-text {
    font-size: 0.7rem;
  }
}