 body {
      font-family: Arial, sans-serif;
      background: #0f172a;   /* dark background */
      color: #f8fafc;        /* light text */
      display: flex;
      justify-content: center;
      align-items: center;
      min-height: 100vh;
      margin: 0;
    }

    .container {
      background: #1e293b;   /* card background */
      padding: 20px 30px;
      border-radius: 12px;
      box-shadow: 0 8px 20px rgba(0,0,0,0.3);
      text-align: center;
      width: 300px;
    }

    h1 {
      font-size: 1.2rem;
      margin-bottom: 20px;
      color: #38bdf8; /* cyan accent */
      word-wrap: break-word;
    }

    .options {
      text-align: left;
      margin: 15px 0;
    }

    label {
      margin-left: 8px;
      font-size: 0.95rem;
    }

    input[type="checkbox"] {
      transform: scale(1.2);
      cursor: pointer;
    }

    .password-box {
      background: #0f172a;
      border: 1px solid #334155;
      padding: 10px;
      border-radius: 8px;
      font-weight: bold;
      font-size: 1rem;
      margin-bottom: 15px;
      word-break: break-all;
    }

    .note {
      font-size: 0.8rem;
      color: #94a3b8;
      margin:10px;
    }