
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    body {
      font-family: 'Inter', sans-serif;
      height: 100vh;
      display: flex;
      overflow: hidden;
    }

    /* ── LEFT PANEL ── */
    .left-panel {
      width: 36%;
      min-width: 300px;
      position: relative;
      background:
        linear-gradient(rgba(100,0,0,0.72), rgba(100,0,0,0.72)),
        url('../img/login_police.png')
        center/cover no-repeat;
      flex-shrink: 0;
    }

    /* ── RIGHT PANEL ── */
    .right-panel {
      flex: 1;
      background: #fdf8f8;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 40px 60px;
      position: relative;
    }

    .login-box {
      width: 100%;
      max-width: 380px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0;
    }

    /* Logo area */
    .logo-area {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 48px;
    }
    .logo-area img {
      height: 70px;
      width: auto;
      object-fit: contain;
    }

    /* Form */
    .login-box form {
      width: 100%;
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    .field-group {
      width: 100%;
    }

    .field-group input {
      width: 100%;
      padding: 14px 18px;
      border: 1.5px solid #d8d0d0;
      border-radius: 6px;
      font-family: 'Inter', sans-serif;
      font-size: 14px;
      color: #333;
      background: #fff;
      outline: none;
      transition: border-color 0.2s;
    }
    .field-group input::placeholder { color: #aaa; }
    .field-group input:focus { border-color: #7b0000; }

    .error-msg {
      width: 100%;
      background: #ffe4e4;
      color: #7b0000;
      border: 1px solid #f5c6c6;
      border-radius: 6px;
      padding: 10px 14px;
      font-size: 13px;
      margin-bottom: 14px;
    }

    .btn-login {
      margin-top: 10px;
      width: 100%;
      padding: 15px;
      background: #7b0000;
      color: #fff;
      font-family: 'Inter', sans-serif;
      font-size: 15px;
      font-weight: 600;
      border: none;
      border-radius: 6px;
      cursor: pointer;
      letter-spacing: 0.3px;
      transition: background 0.2s, transform 0.1s;
    }
    .btn-login:hover  { background: #6a0000; }
    .btn-login:active { transform: scale(0.99); }
    .btn-login:disabled { background: #aa7777; cursor: not-allowed; }

    /* Forgot Password Section */
    .forgot-container {
      width: 100%;
      text-align: right;
      margin-bottom: 12px;
      margin-top: -4px;
    }

    .forgot-link {
      font-size: 13px;
      color: #888;
      text-decoration: none;
      font-weight: 500;
      transition: color 0.2s;
    }

    .forgot-link:hover {
      color: #7b0000;
      text-decoration: underline;
    }

    .forgot-message-box {
      width: 100%;
      display: flex;
      flex-direction: column;
      gap: 16px;
      text-align: center;
      background: #fff;
      padding: 24px;
      border: 1.5px solid #d8d0d0;
      border-radius: 8px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    }

    .forgot-message-box h2 {
      font-size: 20px;
      font-weight: 700;
      color: #333;
    }

    .forgot-message-box p {
      font-size: 14px;
      color: #666;
      line-height: 1.5;
    }

    .contact-info {
      font-size: 16px;
      font-weight: 600;
      background: #ffe4e4;
      padding: 12px;
      border-radius: 6px;
      border: 1px solid #f5c6c6;
    }

    .contact-info a {
      color: #7b0000;
      text-decoration: none;
      transition: color 0.2s;
    }

    .contact-info a:hover {
      text-decoration: underline;
    }

    .btn-secondary {
      width: 100%;
      padding: 14px;
      background: #f5ecec;
      color: #7b0000;
      font-family: 'Inter', sans-serif;
      font-size: 14px;
      font-weight: 600;
      border: 1px solid #e2d2d2;
      border-radius: 6px;
      cursor: pointer;
      transition: background 0.2s, transform 0.1s;
    }

    .btn-secondary:hover {
      background: #ebdcdc;
    }

    .btn-secondary:active {
      transform: scale(0.99);
    }

    /* Copyright */
    .copyright {
      position: absolute;
      bottom: 24px;
      font-size: 12px;
      color: #aaa;
    }

    @media (max-width: 680px) {
      .left-panel { display: none; }
      .right-panel { padding: 40px 28px; }
    }

    @media (max-width: 480px) {
      .right-panel {
        padding: 32px 20px 60px;
        justify-content: flex-start;
        overflow-y: auto;
      }
      .logo-area {
        margin-top: 40px;
        margin-bottom: 32px;
      }
      .copyright {
        position: relative;
        margin-top: 60px;
        bottom: 0;
      }
    }
 