    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
      background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 20px;
	  position: relative;
	  overflow: hidden;
    }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      background-image: url("/aktiva/dongkanalogo2.png");
      background-size: contain;
      background-repeat: no-repeat;
      background-position: center;
      z-index: -2;
    }

    body::after {
      content: "";
      position: fixed;
      inset: 0;
      background: linear-gradient(
      135deg,
      rgba(15, 23, 42, 0.85),
      rgba(30, 41, 59, 0.85)
      );
      z-index: -1;
    }

    .login-container {
      width: 100%;
      max-width: 300px;
    }

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

    .password-input input {
      width: 100%;
      padding: 18px 20px;
      background: rgba(255, 255, 255, 0.07);
      border: 2px solid rgba(255, 255, 255, 0.15);
      border-radius: 15px;
      color: #fff;
      font-size: 1.1rem;
      text-align: center;
      letter-spacing: 2px;
      transition: all 0.3s ease;
      outline: none;
    }

    .password-input input::placeholder {
      color: rgba(255, 255, 255, 0.4);
      letter-spacing: normal;
    }

    .password-input input:focus {
      border-color: #3b82f6;
      box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.15);
      background: rgba(255, 255, 255, 0.1);
    }

    .password-input input:disabled {
      opacity: 0.5;
      cursor: not-allowed;
    }

    .toggle-password {
      position: absolute;
      right: 15px;
      top: 50%;
      transform: translateY(-50%);
      background: none;
      border: none;
      color: rgba(255, 255, 255, 0.5);
      cursor: pointer;
      font-size: 1.2rem;
      padding: 5px;
      transition: color 0.2s;
    }

    .toggle-password:hover {
      color: rgba(255, 255, 255, 0.8);
    }

    .status-message {
      margin-top: 15px;
      padding: 12px;
      border-radius: 10px;
      text-align: center;
      font-size: 0.9rem;
      opacity: 0;
      transform: translateY(-10px);
      transition: all 0.3s ease;
      max-height: 0;
      overflow: hidden;
    }

    .status-message.show {
      opacity: 1;
      transform: translateY(0);
      max-height: 100px;
    }

    .status-message.success {
      background: rgba(34, 197, 94, 0.15);
      color: #4ade80;
      border: 1px solid rgba(34, 197, 94, 0.3);
    }

    .status-message.error {
      background: rgba(239, 68, 68, 0.15);
      color: #f87171;
      border: 1px solid rgba(239, 68, 68, 0.3);
    }

    @keyframes pulse {
      0%, 100% { opacity: 1; }
      50% { opacity: 0.5; }
    }

    .loading {
      animation: pulse 1.5s ease-in-out infinite;
    }

    @media (min-width: 768px) {
      .password-input input {
        padding: 20px 25px;
        font-size: 1.2rem;
      }
      
      .password-input {
        max-width: 350px;
      }
    }

    @media (max-width: 480px) {
      body {
        padding: 15px;
        align-items: flex-start;
        padding-top: 40vh;
      }
      
      .password-input input {
        padding: 16px 18px;
        font-size: 1rem;
        -webkit-appearance: none;
        border-radius: 12px;
      }
      
      input[type="password"] {
        ime-mode: disabled;
      }
    }

    .password-input input:focus-visible {
      outline: 2px solid #3b82f6;
      outline-offset: 2px;
    }

    @media (prefers-color-scheme: dark) {
      .password-input input {
        background: rgba(0, 0, 0, 0.3);
      }
    }