body {
  font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  margin: 0;
  background: #f4f4f4; 
  color: #333;
}
.buttons {
  text-align: center;
  margin: 40px 0;
}
.buttons a {
  display: inline-block;
  margin: 10px;
  padding: 12px 25px;
  background: #4facfe;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s ease;
}
.buttons a:hover {
  background: #007acc;
}
   .card {
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
            border-radius: 10px;
    }
   .card-header {
            background: linear-gradient(135deg, #0d6efd, #6610f2);
            color: white;
            font-weight: bold;
            font-size: 1.2rem;
    }
   .form-label {
            font-weight: 500;
    }
    nav a {
      color: #fff;
      text-decoration: none;
      margin-left: 1rem;
      font-weight: 500;
    }
   .landing {
  position: relative;
  background: url('assets/christopher-gower-m_HRfLhgABo-unsplash.jpg') center/cover no-repeat;
  color: white;
  text-align: center;
  padding: 80px 20px;
}

.landing::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.5); /* dark overlay */
}

.landing h1, .landing p {
  position: relative; /* ensures text sits above overlay */
}

    .hero {
      background: url('https://images.unsplash.com/photo-1522202176988-66273c2fd55f?fit=crop&w=1200&q=80') center/cover no-repeat;
      color: #fff;
      text-align: center;
      padding: 6rem 2rem;
    }
    .hero h2 {
      font-size: 2.5rem;
      margin-bottom: 1rem;
    }
    .hero p {
      font-size: 1.2rem;
      max-width: 600px;
      margin: 0 auto;
    }

   
    .login-section {
      max-width: 400px;
      margin: 3rem auto;
      background: #fff;
      padding: 2rem;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    }
    .login-section h3 {
      text-align: center;
      margin-bottom: 1rem;
    }
    .login-section input {
      width: 100%;
      padding: 0.8rem;
      margin-bottom: 1rem;
      border: 1px solid #ccc;
      border-radius: 6px;
    }
    .login-section button {
      width: 100%;
      padding: 0.8rem;
      color: #fff;
      border: none;
      border-radius: 6px;
      font-size: 1rem;
      cursor: pointer;
      transition: background 0.3s ease;
      background-color: #4facfe;
    }
    .login-section button:hover {
       background-color: #007acc;
    }
    .form-section {
      max-width: 400px;
      margin: 3rem auto;
      background: #fff;
      padding: 2rem;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    }
    .form-section h3 {
      text-align: center;
      margin-bottom: 1rem;
    }
    .form-section input {
      width: 100%;
      padding: 0.8rem;
      margin-bottom: 1rem;
      border: 1px solid #ccc;
      border-radius: 6px;
    }
    .form-section button {
      width: 100%;
      padding: 0.8rem;
      color: #fff;
      border: none;
      border-radius: 6px;
      font-size: 1rem;
      cursor: pointer;
      transition: background 0.3s ease;
      background-color: #4facfe;
    }
    .form-section button:hover {
       background-color: #007acc;
    }
    .footer {
      text-align: center;
      padding: 1rem;
      background-color: #333;
      color: #fff;
      font-size: 0.9rem;
    }
.styled-form {
  width: 80%;
  margin: 0 auto; /* center horizontally */
  border: 2px solid #333;
  padding: 20px;
  border-radius: 8px;
  background: #fff;
}

.modal {
  display: none; /* hidden by default */
  position: fixed;
  z-index: 1000;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.5);
}

.modal-content {
  background: #fff;
  margin: 15% auto;
  padding: 20px;
  border-radius: 8px;
  width: 300px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

 
  h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
}