
  body, html { height: 100%; margin: 0; padding: 0; background-color: var(--off-white); display: flex; flex-direction: column;}
  
  .login-wrapper {
    display: flex;
    min-height: 100vh;
    width: 100%;
  }

  /* Left Side: Brand Panel */
  .login-brand-panel {
    flex: 1;
    background: linear-gradient(135deg, var(--dark-green) 0%, var(--dark-green) 100%);
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px;
    position: relative;
    overflow: hidden;
  }

  .brand-panel-inner {
    position: relative;
    z-index: 2;
    max-width: 480px;
  }

  .login-brand-panel::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    top: -20%;
    right: -20%;
  }
  
  .login-brand-panel::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    bottom: -10%;
    left: -10%;
  }

  .brand-logo {
	width: 20%;
    margin-bottom: 5%;
  }

  .brand-logo img {
    width: 100%;
    display: block;
  }

  .brand-tagline {
    font-size: 40px;
	font-family: 'Special Gothic Expanded One', sans-serif;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 20px;
  }

  .brand-desc {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
  }

  /* Right Side: Form Panel */
  .login-form-panel {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--off-white);
    padding: 40px;
  }

  .login-card {
    background: transparent;
    width: 100%;
    max-width: 420px;
  }

  .login-header {
    margin-bottom: 32px;
    text-align: center;
  }

  .login-header h2 {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 8px;
  }

  .login-header p {
    font-size: 14px;
    color: var(--accent-green);
  }

  .input-wrap {
    margin-bottom: 20px;
    position: relative;
  }

  .input-label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
  }

  .input-field {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid rgba(2,71,25,0.2);
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    color: var(--text-dark);
    transition: all 0.2s;
    outline: none;
    background: #FAFAFA;
  }

  .input-field:focus {
    border-color: var(--mid-green);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(16,145,59,0.1);
  }

  .form-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
  }

  .checkbox-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-dark);
    font-weight: 600;
    cursor: pointer;
  }

  .forgot-link {
    font-size: 13px;
    color: var(--mid-green);
    font-weight: 700;
    text-decoration: none;
  }

  .forgot-link:hover {
    text-decoration: underline;
  }

  .btn-login {
    width: 100%;
    padding: 14px;
    background: var(--mid-green);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
    transition: background 0.2s;
  }

  .btn-login:hover {
    background: var(--dark-green);
  }

  .signup-prompt {
    margin-top: 32px;
    text-align: center;
    font-size: 13px;
    color: var(--accent-green);
  }

  .signup-prompt a {
    color: var(--mid-green);
    font-weight: 700;
    text-decoration: none;
  }

  .signup-prompt a:hover {
    text-decoration: underline;
  }

  /* Responsive Mobile */
  @media (max-width: 900px) {
    .login-wrapper {
      flex-direction: column;
    }
    .login-brand-panel {
      padding: 40px 24px;
      flex: none;
    }
    .brand-tagline {
      font-size: 28px;
    }
    .login-form-panel {
      padding: 24px;
      align-items: flex-start;
      margin-top: -30px;
    }
    .login-card {
      box-shadow: 0 -10px 40px rgba(0,0,0,0.1);
    }
  }