.ts-public-form {
    max-width: 650px;
    margin: 0 auto;
    padding: 25px;
    background: #ffffff;
    border: 1px solid #e2e2e2;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    font-family: Arial, sans-serif;
}

.ts-form-title {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: 600;
    color: #222;
}

.ts-field {
    margin-bottom: 18px;
}

.ts-half {
    width: 48%;
    display: inline-block;
    vertical-align: top;
}

.ts-field label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
    color: #333;
}

.ts-required {
    color: #d00;
    margin-left: 4px;
}

.ts-field input[type="text"],
.ts-field input[type="email"],
.ts-field input[type="phone"],
.ts-field input[type="file"],
.ts-field textarea,
.ts-field select {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 15px;
    background: #fafafa;
    color: #222;
    transition: border-color 0.2s, background 0.2s;
}

.ts-field input:focus,
.ts-field textarea:focus,
.ts-field select:focus {
    border-color: #2271b1;
    background: #fff;
    outline: none;
}

.ts-radio,
.ts-checkbox {
    display: block;
    margin-bottom: 6px;
    font-size: 15px;
    color: #333;
}

.ts-radio input,
.ts-checkbox input {
    margin-right: 6px;
}

.ts-submit-btn {
    display: inline-block;
    width: 100%;
    padding: 14px;
    font-size: 17px;
    font-weight: 600;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    margin-top: 10px;
    transition: opacity 0.2s;
}

.ts-submit-btn:hover {
    opacity: 0.9;
}

.ts-form-response {
    margin-top: 15px;
    font-size: 15px;
    font-weight: 600;
}

.ts-form-response.success {
    color: #2a8a2a;
}

.ts-form-response.error {
    color: #d00;
}

.ts-public-form,
.ts-public-form * {
    color: #222;
}

.ts-field input[type="text"],
.ts-field input[type="email"],
.ts-field input[type="phone"],
.ts-field input[type="file"],
.ts-field textarea,
.ts-field select {
    color: #222;
    background: #fafafa;
}

.ts-field input::placeholder,
.ts-field textarea::placeholder {
    color: #777;
}
