/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Nunito', sans-serif;
    background: linear-gradient(135deg, #eef2f3, #cfd9df);
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
  }
  
  .container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100vh;
    padding: 20px;
  }
  
  .card {
    background-color: #fff;
    padding: 60px 50px;
    border-radius: 18px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 500px;
    width: 100%;
    animation: fadeIn 0.8s ease-in-out;
  }
  
  .logo svg {
    width: 120px;
    margin-bottom: 30px;
  }
  
  h1 {
    font-size: 40px;
    color: #2c3e50;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 12px;
  }
  
  h2 {
    font-size: 20px;
    color: #6c63ff;
    font-weight: 500;
    margin-bottom: 25px;
  }
  
  p {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 40px;
  }
  
  .button {
    display: inline-block;
    padding: 14px 45px;
    background: linear-gradient(135deg, #6c63ff, #5a67d8);
    color: #fff;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    transition: background-color 0.3s ease, transform 0.2s ease;
  }
  
  .button:hover {
    background: linear-gradient(135deg, #4f46e5, #3b82f6);
    transform: scale(1.05);
  }
  
  /* Animations */
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* Footer Styling */
  .footer {
    position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;
  }
  
  .footer p {
    font-size: 14px;
    color: #7a7a7a;
  }
  
  /* Responsiveness */
  @media (max-width: 768px) {
    .card {
      padding: 40px 20px;
    }
  
    h1 {
      font-size: 32px;
    }
  
    h2 {
      font-size: 18px;
    }
  
    p {
      font-size: 14px;
    }
  
    .logo svg {
      width: 100px;
    }
  }
  