/* General styling */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background: #f5f7fa;
    color: #333;
    display: flex;
    flex-direction: column;
  }
  main {
    flex: 1;
  }
  html, body {
    margin: 0;
    padding: 0;
    height: 100%;
  }
  /* Header styling */
  header {
    background: #4a90e2;
    color: #fff;
    padding: 1rem 0;
  }
  .header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1rem;
  }
  .logo {
    font-size: 1.5rem;
    font-weight: 700;
  }
  .profile-nav .profile-link {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    padding: 0.5rem 1rem;
    transition: background 0.3s ease;
  }
  .profile-nav .profile-link:hover {
    background: rgba(255,255,255,0.2);
    border-radius: 5px;
  }
  
  /* Hero Section */
  .hero .container {
    background: linear-gradient(135deg, #6B73FF 0%, #000DFF 100%);
    color: #fff;
    text-align: center;
    padding: 80px 20px;
  }
  .hero .hero-content {
    max-width: 800px;
    margin: 0 auto;
  }
  .hero h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
  }
  .hero p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
  }
  
  /* Button styling */
  .smooth-btn,
  button {
    background: #ff6b6b;
    border: none;
    color: #fff;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    border-radius: 30px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
  }
  .smooth-btn:hover,
  button:hover {
    background: #ff5252;
    transform: translateY(-3px);
  }
  
  /* Daily Quizzes Section */
  .daily-quizzes {
    max-width: 1100px;
    margin: 40px auto;
    padding: 30px 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
  }
  .daily-quizzes h2 {
    text-align: center;
    margin-bottom: 20px;
  }
  .quiz-list {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  
  /* Footer styling */
  footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 1rem 0;
  }
  .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px;
  }
  
  /* Header styling (shared on both pages) */
  .header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1rem;
  }
  .header-container .logo {
    font-size: 1.5rem;
    color: #fff;
    text-decoration: none; /* Removes the underline */
    font-weight: 700;
    cursor: pointer;
  }
  .auth-nav .auth-link {
    font-size: 1.5rem;
    color: #fff;
    text-decoration: none; /* Removes the underline */
    font-weight: 700;
    cursor: pointer;
  }

  
  /* Card style for sections */
  .card {
    background: #fff;
    padding: 30px 20px;
    margin-bottom: 40px;
    border-radius: 10px;
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
  }
  
  /* Smooth button style */
  .smooth-btn, button {
    background: #ff6b6b;
    border: none;
    color: #fff;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    border-radius: 30px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
  }
  .smooth-btn:hover, button:hover {
    background: #ff5252;
    transform: translateY(-3px);
  }  
.auth-card form input[type="text"],
.auth-card form input[type="email"],
.auth-card form input[type="password"] {
  display: block;
  width: 100%;
  padding: 0.75rem;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-sizing: border-box;
  font-size: 1rem;
}

/* You can add additional styling if needed to match other content */
.form-container {
  max-width: 400px;
  margin: 2rem auto;
}
  