.ts-clean-form-wrapper * {
    box-sizing: border-box;
    font-family: Arial, sans-serif !important;
}

.ts-form {
    max-width: 700px;
    margin: auto;
    background: #ffffff;
    padding: 25px;
    border-radius: 8px;
    border: 1px solid #ccc;
}

.ts-form h2 {
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: bold;
}

.ts-form label {
    font-weight: 600;
    display: block;
    margin-top: 15px;
}

.ts-form input,
.ts-form select,
.ts-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #bbb;
    border-radius: 5px;
    margin-top: 5px;
    font-size: 15px;
}

.ts-form textarea {
    min-height: 100px;
}

.ts-submit {
    background: #528c9e;
    color: #fff;
    padding: 12px 18px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    margin-top: 20px;
    width: 100%;
}

.ts-submit:hover {
    opacity: 0.9;
}
