:root {
    /* Color Scheme */
    --primary-green: #1b9e3e;    
    --light-green: #d5efd8;      
    --dark-green: #0a5c1f;       
    --accent-gold: #d4af37;
    --white: #ffffff;
    --light-gray: #f5f5f5;
    --dark-gray: #333333;
    --shadow-green: rgba(27, 158, 62, 0.2);
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }
  
  body {
    background-color: var(--light-green);
    color: var(--dark-gray);
    line-height: 1.6;
    padding: 20px;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: flex-start; 
    background-image: 
      radial-gradient(
        circle at 20% 40%,
        rgba(27, 158, 62, 0.15) 0%,
        transparent 25%
      ),
      radial-gradient(
        circle at 80% 60%,
        rgba(27, 158, 62, 0.15) 0%,
        transparent 25%
      ),
      linear-gradient(
        to bottom right,
        var(--light-green),
        var(--primary-green)
      );
    position: relative;
    overflow-y: auto; /
  }
  
  .container {
    width: 100%;
    max-width: 450px;
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--shadow-green);
    position: relative;
    z-index: 1;
  }
  
  .logo-container {
    text-align: center;
    margin-bottom: 30px;
  }
  
  .logo {
    max-width: 180px;
    height: auto;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
  }
  
  h1 {
    text-align: center;
    color: var(--primary-green);
    margin-bottom: 30px;
    font-size: 26px;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  }
  
  .login-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  
  .form-group label {
    font-weight: 600;
    color: var(--dark-green);
    font-size: 15px;
  }
  
  .form-group input {
    padding: 14px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s;
    background-color: rgba(255, 255, 255, 0.9);
  }
  
  .form-group input:focus {
    border-color: var(--primary-green);
    outline: none;
    box-shadow: 0 0 0 3px var(--shadow-green);
  }
  
  .forgot-password {
    text-align: right;
    margin-top: 5px;
  }
  
  .forgot-password a {
    color: var(--primary-green);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
    font-weight: 500;
  }
  
  .forgot-password a:hover {
    color: var(--dark-green);
    text-decoration: underline;
  }
  
  .btn {
    background-color: var(--primary-green);
    color: white;
    border: none;
    padding: 14px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  
  .btn:hover {
    background-color: var(--dark-green);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  }
  
  .signup-link {
    text-align: center;
    margin-top: 20px;
    color: var(--dark-gray);
    font-size: 15px;
  }
  
  .signup-link a {
    color: var(--primary-green);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s;
  }
  
  .signup-link a:hover {
    color: var(--dark-green);
    text-decoration: underline;
  }
  
  /* Decorative elements */
  .decor-leaf {
    position: absolute;
    width: 120px;
    height: 120px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path fill="%231b9e3e" d="M50 0c-10 20-20 30-30 40 10 10 20 20 30 30 10-10 20-20 30-30-10-10-20-20-30-40z" opacity="0.15"/></svg>');
    background-repeat: no-repeat;
    z-index: 0;
  }
  
  .decor-leaf.top-left {
    top: 10%;
    left: 10%;
    transform: rotate(-20deg);
  }
  
  .decor-leaf.bottom-right {
    bottom: 10%;
    right: 10%;
    transform: rotate(100deg);
  }
  
  @media (max-width: 480px) {
    .container {
      padding: 30px 20px;
    }
    
    h1 {
      font-size: 22px;
    }
    
    .decor-leaf {
      width: 80px;
      height: 80px;
    }
  }