/* Tender CRM — frontend enquiry form */
.tcrm-form-wrap {
    max-width: 640px;
    margin: 30px auto;
    background: #ffffff;
    padding: 28px;
    border-radius: 10px;
    border: 1px solid #e5e1d9;
    box-shadow: 0 4px 18px rgba(0,0,0,0.05);
}
.tcrm-form-heading { font-size: 24px; color: #2A2A2A; margin: 0 0 6px; font-weight: 700; }
.tcrm-form-sub     { color: #666; margin: 0 0 18px; font-size: 14px; }

.tcrm-form input[type="text"],
.tcrm-form input[type="email"],
.tcrm-form textarea {
    width: 100%;
    padding: 11px 13px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    box-sizing: border-box;
    margin-bottom: 10px;
    font-family: inherit;
    background: #fff;
}
.tcrm-form input:focus,
.tcrm-form textarea:focus {
    outline: none;
    border-color: #F26522;
    box-shadow: 0 0 0 3px rgba(242,101,34,0.15);
}
.tcrm-form .tcrm-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
@media (max-width: 480px) { .tcrm-form .tcrm-row { grid-template-columns: 1fr; } }

.tcrm-loggedin {
    background: #d1fae5; color: #065f46;
    padding: 8px 14px; border-radius: 6px;
    margin-bottom: 14px; font-size: 13px;
}

.tcrm-product-pill {
    display: inline-block;
    background: #fff7e6;
    color: #b54708;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 14px;
    border: 1px solid #fde2c2;
}

.tcrm-submit {
    background: #F26522;
    color: #fff;
    padding: 12px 28px;
    border: none;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all .2s ease;
}
.tcrm-submit:hover     { background: #d4541a; transform: translateY(-1px); box-shadow: 0 8px 18px rgba(242,101,34,0.25); }
.tcrm-submit:disabled  { opacity: 0.7; cursor: not-allowed; transform: none; box-shadow: none; }

.tcrm-result          { margin: 12px 0 0; font-size: 14px; min-height: 18px; }
.tcrm-result.success  { color: #065f46; background: #d1fae5; padding: 10px 14px; border-radius: 6px; }
.tcrm-result.error    { color: #7f1d1d; background: #fee2e2; padding: 10px 14px; border-radius: 6px; }
