.pwd-grid {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 12px 16px;
    align-items: center;
    margin-top: 12px;
}
.pwd-grid .label {
    font-family: var(--mono);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
}
.pwd-grid .label b {
    color: var(--text);
    font-weight: 600;
}
.pwd-grid input {
    padding: 10px 14px;
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text);
    font-family: var(--mono);
    font-size: 14px;
    outline: none;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
    width: 100%;
    max-width: 460px;
}
.pwd-grid input::placeholder { color: var(--text-dim); }
.pwd-grid input:focus {
    border-color: var(--cyan);
    box-shadow: 0 0 0 3px var(--cyan-soft);
    background: var(--surface);
}
.pwd-note {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 8px 0 16px 0;
}
.pwd-note b { color: var(--text); }
#output {
    font-family: var(--mono);
    font-weight: 700;
    background: linear-gradient(135deg, var(--surface-2) 0%, var(--surface) 100%);
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-sm);
    padding: 20px;
    font-size: 32px;
    color: var(--cyan);
    text-shadow: 0 0 18px var(--cyan-glow);
    letter-spacing: 0.04em;
    text-align: center;
    word-break: break-all;
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}
#output:empty::before {
    content: "Reset code will appear here";
    color: var(--text-dim);
    font-size: 14px;
    font-weight: 400;
    text-shadow: none;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
