/* Reset some default styling */
body, h1, h2, h3, p, ul, li, form {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
  }
  
  a {
    text-decoration: none;
    color: inherit;
  }
  
  input, button {
    font-family: inherit;
  }
  
  /* Navbar */
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #2c3e50;
  }
  
  .navbar .logo {
    color: white;
    font-size: 24px;
  }
  
  /* Login and Sign Up Section */
  .login-section, .signup-section {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80vh;
    background-color: #f9f9f9;
  }
  
  .login-container, .signup-container {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
  }
  
  h2 {
    margin-bottom: 20px;
    font-size: 24px;
    text-align: center;
  }
  
  .input-group {
    margin-bottom: 15px;
  }
  
  .input-group label {
    display: block;
    font-size: 14px;
    margin-bottom: 5px;
  }
  
  .input-group input {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
  }
  
  .cta-btn {
    width: 100%;
    padding: 12px;
    background-color: #2ecc71;
    border: none;
    color: white;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .cta-btn:hover {
    background-color: #27ae60;
  }
  
  /* Footer */
  footer {
    text-align: center;
    margin-top: 20px;
  }
  
  footer p {
    font-size: 14px;
  }
  
  footer a {
    color: #2ecc71;
  }
  
  footer a:hover {
    text-decoration: underline;
  }
  .navbar .nav-links {
    list-style-type: none;
    display: flex;
  }
  
  .navbar .nav-links li {
    margin-right: 20px;
  }
  
  .navbar .nav-links a {
    color: white;
    font-size: 16px;
    padding: 5px 10px;
    transition: background-color 0.3s ease;
  }
  .navbar .nav-links a {
    position: relative;
    z-index: 10; /* Ensures the link is on top */
  }
  .navbar .nav-links a:hover {
    background-color: #16a085;
    color: white; /* Make sure the text color stays visible */
  }
      
  