* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }
  
  html, body {
    height: 100%;
  }
  
  body {
    background: url('bg.jpg') no-repeat center center fixed;
    background-size: cover;
    color: #fff;
    display: flex;
    flex-direction: column;
  }
  
  .wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100vh;
  }
  
  .overlay {
    background-color: rgba(0, 60, 0, 0.6);
    padding: 40px 20px;
    width: 100%;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .logo {
    width: 80px;
    margin-bottom: 20px;
  }
  
  .title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
  }
  
  .subtitle {
    font-size: 16px;
    margin-bottom: 30px;
    color: #fff;
  }
  
  .button-group {
    margin-bottom: 30px;
  }
  
  .btn {
    background-color: #66bb6a;
    color: white;
    padding: 10px 25px;
    margin: 5px 10px;
    border: none;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
  }
  
  .btn:hover {
    background-color: #43a047;
  }
  
  .section-title {
    font-size: 28px;
    font-weight: bold;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #fff;
  }
  
  .features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
  
  .feature-box {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 12px;
    width: 200px;
    text-align: center;
    transition: transform 0.3s, background-color 0.3s;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
    color: #fff;
  }
  
  .feature-box i {
    font-size: 30px;
    margin-bottom: 10px;
    color: #00ff00;
  }
  
  .feature-box p {
    font-size: 16px;
    margin: 0;
  }
  
  .feature-box:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
  }
  
  .footer {
    text-align: center;
    padding: 15px;
    font-size: 12px;
    color: #fff;
    background-color: #2e7d32;
  }
  
  /* Login Modal */
  .modal {
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
  }
  
  .modal-content {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    width: 100%;
    max-width: 400px;
    color: #000;
    position: relative;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  }
  
  .modal-title {
    text-align: center;
    margin-bottom: 20px;
    font-size: 24px;
    color: #2e7d32;
  }
  
  .close-btn {
    position: absolute;
    top: 12px;
    right: 15px;
    font-size: 22px;
    color: #000;
    cursor: pointer;
  }
  
  .form-group {
    margin-bottom: 15px;
    text-align: left;
  }
  
  .form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
  }
  
  .form-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
  }
  
  .login-btn {
    background-color: #2e7d32;
    color: #fff;
    padding: 10px;
    width: 100%;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
  }
  
  .login-btn:hover {
    background-color: #1b5e20;
  }
  
  .forgot-password {
    margin-top: 15px;
    text-align: center;
  }
  
  .forgot-password a {
    color: #333232;
    text-decoration: none;
    font-size: 14px;
  }
  
  .forgot-password a:hover {
    text-decoration: underline;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .title {
      font-size: 24px;
    }
  
    .subtitle {
      font-size: 14px;
    }
  
    .feature-box {
      width: 100%;
      max-width: 300px;
    }
  
    .btn {
      width: 100%;
      max-width: 250px;
      margin: 10px auto;
      display: block;
    }
  }
  