.comars-contact-form .comars-field {
    margin-bottom: 20px;
}

.comars-contact-form .comars-label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: bold;
}

.comars-contact-form .comars-required {
    color: #ff0000;
}

.comars-contact-form .comars-input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    box-sizing: border-box;
}

.comars-contact-form .comars-input:focus {
    outline: none;
    border-color: #111;
    box-shadow: 0 0 0 1px #111;
}

.comars-contact-form .comars-button {
    width: 100%;
    border-radius: 9999px;
}

.comars-contact-form .comars-success {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    padding: 15px;
    color: #155724;
}

.comars-contact-form .comars-error {
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    padding: 15px;
    color: #721c24;
}

.comars-contact-form .comars-field-error {
    color: #ff0000;
    font-size: 13px;
    margin-top: 5px;
    display: none;
}

.comars-contact-form .comars-input.comars-invalid {
    border: 1px solid #ff0000;
}

.comars-contact-form .comars-input.comars-invalid:focus {
    outline: none;
    border-color: #ff0000;
    box-shadow: 0 0 0 1px #ff0000;
}

/* Disabled field */
.comars-contact-form .comars-field.comars-disabled .comars-label {
    color: #999;
}

.comars-contact-form .comars-input:disabled {
    background-color: #f5f5f5;
    color: #999;
    cursor: not-allowed;
}

/* Checkbox field */
.comars-contact-form .comars-checkbox-field {
    margin-bottom: 20px;
}

.comars-contact-form .comars-checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 14px;
}

.comars-contact-form .comars-checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

/* intl-tel-input */
.comars-contact-form .iti {
    width: 100%;
}

.iti__dropdown-content {
    font-size: 14px;
}

.comars-contact-form .iti__selected-country:focus,
.comars-contact-form .iti__selected-country:focus-visible {
    outline: none;
    box-shadow: none;
}