.tnt-contact-form {
    max-width: 400px;
    margin: 20px 0;
}

.tnt-contact-form h3 {
    margin-bottom: 15px;
}

.tnt-contact-form p {
    margin-bottom: 15px;
}

.tnt-contact-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.tnt-contact-form input[type="text"],
.tnt-contact-form input[type="email"] {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.tnt-submit-button {
    background: #2271b1;
    color: #fff;
    padding: 0px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.tnt-submit-button:hover {
    background: #135e96;
}

.tnt-message {
    margin-top: 10px;
    padding: 10px;
    border-radius: 4px;
    display: none;
}

.tnt-message.success {
    background: #d1e7dd;
    color: #0f5132;
    border: 1px solid #badbcc;
}

.tnt-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}
/* Contact Form Styles */
.tnt-contact-form-wrapper {
    max-width: 600px;
    margin: 20px 0;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
    border: 1px solid #ddd;
}

.tnt-contact-form-wrapper h3 {
    margin-bottom: 20px;
    color: #333;
    border-bottom: 2px solid #2271b1;
    padding-bottom: 10px;
}

.tnt-form-field {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.tnt-form-field label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #333;
}

.tnt-form-field input[type="text"],
.tnt-form-field input[type="email"],
.tnt-form-field input[type="tel"],
.tnt-form-field textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.tnt-form-field input[type="text"]:focus,
.tnt-form-field input[type="email"]:focus,
.tnt-form-field input[type="tel"]:focus,
.tnt-form-field textarea:focus {
    border-color: #2271b1;
    outline: none;
    box-shadow: 0 0 0 1px #2271b1;
}

.tnt-form-field textarea {
    resize: vertical;
    min-height: 120px;
}

.tnt-contact-submit-button {
    background: #2271b1;
    color: #fff;
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.tnt-contact-submit-button:hover {
    background: #135e96;
}

.tnt-contact-submit-button:disabled {
    background: #a0a5aa;
    cursor: not-allowed;
}

.tnt-contact-message {
    margin-top: 15px;
    padding: 12px 15px;
    border-radius: 4px;
    display: none;
}

.tnt-contact-message.success {
    background: #d1e7dd;
    color: #0f5132;
    border: 1px solid #badbcc;
    display: block;
}

.tnt-contact-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

/* Responsive Design */
@media (max-width: 768px) {
    .tnt-contact-form-wrapper {
        padding: 15px;
        margin: 10px 0;
    }
    
    .tnt-form-field {
        margin-bottom: 15px;
    }
    
    .tnt-contact-submit-button {
        width: 100%;
    }
}