body {
      font-family: 'Press Start 2P', monospace;
      background-color: #1c1e21;
      color: #ffffff;
    }
    .pixel-box {
      background-color: #2a2d31;
      border: 3px solid #3b4147;
      box-shadow: 4px 4px 0 #0f0f0f;
      transition: all 0.2s ease-in-out;
    }
    .pixel-input {
      background-color: #1e2124;
      border: 2px solid #3b4147;
      color: #cfd4d8;
      padding: 0.75rem;
      width: 100%;
      font-size: 10px;
      /* text-transform: uppercase; */ /* dihapus biar huruf sesuai ketikan */
      transition: border-color 0.2s ease;
    }
    .pixel-input:focus {
      outline: none;
      border-color: #5caeff;
      box-shadow: 0 0 4px #5caeff;
    }
    .pixel-button {
      background-color: #5caeff;
      color: #0f0f0f;
      border: 2px solid #ffffff;
      padding: 0.75rem;
      text-transform: uppercase;
      font-size: 10px;
      transition: all 0.2s ease;
    }
    .pixel-button:hover {
      background-color: #78bcff;
      transform: scale(1.03);
    }
    .signup-link {
      font-size: 8px;
      text-align: center;
      margin-top: 1.5rem;
      color: #a0a0a0;
    }
    .signup-link a {
      color: #5caeff;
      text-decoration: none;
    }
    .signup-link a:hover {
      text-decoration: underline;
    }