      :root {
        --maroon: #6b1f1f;
        --gold: #d4a017;
        --bg: #fffaf5;
        --card: #fff;
        --muted: #666;
        --radius: 12px;
      }
      body {
        margin: 0;
        font-family: "Inter", system-ui, Arial;
        background: url("images/Bg_Image.jpg") no-repeat center center fixed;
        background-size: cover;
        color: #222;
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 100vh;
      }
      .box {
        width: 420px;
        max-width: 94%;
        background: var(--card);
        padding: 20px;
        border-radius: 12px;
        box-shadow: 0 18px 60px rgba(0, 0, 0, 0.08);
      }
      h2 {
        margin: 0 0 12px;
        color: var(--maroon);
      }
      label {
        display: block;
        margin-top: 12px;
        font-weight: 600;
        font-size: 13px;
      }
      input {
        width: 90%;
        padding: 10px 12px;
        border-radius: 8px;
        border: 1px solid #e6e6e6;
        margin-top: 6px;
        font-size: 14px;
      }
      .actions {
        display: flex;
        gap: 8px;
        margin-top: 16px;
      }
      button {
        padding: 10px 12px;
        border-radius: 8px;
        border: 0;
        cursor: pointer;
        font-weight: 700;
      }
      .btn-primary {
        background: var(--maroon);
        color: #fff;
        flex: 1;
      }
      .btn-ghost {
        background: transparent;
        border: 2px solid var(--maroon);
        color: var(--maroon);
        flex: 1;
      }
      .muted {
        color: var(--muted);
        font-size: 13px;
        margin-top: 8px;
        text-align: center;
      }
      a.homeLink {
        display: block;
        text-align: center;
        margin-top: 12px;
        color: var(--maroon);
        text-decoration: none;
        font-weight: 600;
      }
