 * {
      box-sizing: border-box;
      font-family: 'Kanit', sans-serif;
    }

    body {
      margin: 0;
      padding: 0;
      background-color: #2b512a2e;
      
    }
    .content-section01{
      display: flex;
      justify-content: center;
      align-items: center;
    
    }
    .imglogo{
      width: 100%;
    }
    .logo1{width: 55%}
    .header-logo{}

    .login-container {
   
      padding: 2rem;
      border-radius: 16px;
    
      width: 100%;
      max-width: 400px;
    }

    .login-container h2 {
      text-align: center;
      color: #2b512a;
      margin-bottom: 1.5rem;
      font-size: 18px;
    }

    .form-group {
      margin-bottom: 1rem;
    }

    .form-group label {
      display: block;
      font-size: 14px;
      margin-bottom: 0.5rem;
      color: #2b512a;
    }

    .form-group input {
      width: 100%;
      padding: 10px;
      border: 1px solid #cbd5e0;
      border-radius: 8px;
      font-size: 16px;
    }

    .password-field {
      position: relative;
      width: 100%;
    }

    .password-field input {
      padding-right: 46px;
    }

    .toggle-password {
      position: absolute;
      top: 50%;
      right: 8px;
      transform: translateY(-50%);
      width: 34px;
      height: 34px;
      border: 0;
      background: transparent;
      color: #2b512a;
      font-size: 18px;
      line-height: 1;
      cursor: pointer;
    }

    .toggle-password:focus {
      outline: 2px solid #2b512a;
      outline-offset: 2px;
      border-radius: 6px;
    }

    .form-footer {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 14px;
      margin-bottom: 1rem;
    }

    .form-footer a {
      color: #0077cc;
      text-decoration: none;
    }

    .form-footer a:hover {
      text-decoration: underline;
    }

    .login-btn {
      width: 100%;
      padding: 12px;
      background-color: #2b512a;
      color: white;
      border: none;
      border-radius: 8px;
      font-size: 16px;
      cursor: pointer;
      transition: background-color 0.3s ease;
    }

    .login-btn:hover {
      background-color: #142914;
    }

    .signup-text {
      text-align: center;
      margin-top: 1rem;
      font-size: 14px;
    }

    .signup-text a {
      color: #004aad;
      font-weight: bold;
      text-decoration: none;
    }

    .signup-text a:hover {
      text-decoration: underline;
    }

     .remember-me {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #004aad;
  margin-bottom: 1rem;
  box-sizing: border-box;
  margin-top: 10px;
  flex-direction: column;
}

.remember-me input[type="checkbox"] {
  margin-right: 8px;
  accent-color: #0077cc; /* สี checkbox */
  transform: scale(1.2); /* ขยายขนาด checkbox */
  cursor: pointer;
}

    @media (max-width: 480px) {
      .login-container {
        padding: 1.5rem;
      }
    }

    @media (min-width: 1024px){
      .logo1{width: 22%}
    }
