/* Contact form notification styles */
.form-notification {
    padding: 12px 15px;
    margin-bottom: 20px;
    border-radius: 6px;
    font-size: 14px;
}

.form-notification.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-notification.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Form validation styles */
.form-control.is-invalid {
    border-color: #dc3545 !important;
    background-image: none !important;
}

.error-text {
    color: #dc3545;
    font-size: 12px;
    margin-top: 5px;
    display: none;
}

/* Loading state for button */
.ct-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}