/* Clean collector styling - sharpens the box, inputs and button ( scoped to the collector only ) */

#collectorcontent
{
    max-width: 700px;
    padding: 32px;
    color: #1a2535;
    border: 1px solid #dce3eb;
    border-radius: 16px;
    box-shadow: 0 4px 28px #00000017;
    font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
}

#collectorcontent h2 { color: #1a2535; font-weight: 700; }

#collectorcontent label { font-size: 14px; font-weight: 600; color: #1a2535; }

#collectorcontent .basicinput
{
    border: 1.5px solid #dce3eb;
    border-radius: 10px;
    padding: 11px 14px;
    font-size: 15px;
    color: #1a2535;
    background: #ffffff;
    box-shadow: none;
    transition: border-color 0.15s, box-shadow 0.15s;
}

#collectorcontent .basicinput:focus
{
    border-color: #8fb0d6;
    box-shadow: 0 0 0 3px #8fb0d633;
    outline: none;
}

#collectorcontent .basicbtn
{
    width: 100%;
    border: none;
    border-radius: 10px;
    padding: 13px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
}
