.tq-form {
    max-width: 400px;
    margin: 0 auto;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 10px;
    background-color: #f9f9f9;
    text-align: center;
}

.tq-form label {
    display: block;
    margin-bottom: 10px;
    font-weight: bold;
}

.tq-form input[type="text"] {
    width: 100%;
    padding: 8px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.tq-form button {
    display: block;
    width: 100%;
    padding: 10px;
    background-color: red;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.tq-form button:hover {
    background-color: darkred;
}

.tq-success, .tq-error {
    color: green;
    font-weight: bold;
    margin-top: 20px;
    text-align: center;
}

.tq-error {
    color: red;
}
