/* Form Messages Styling */
.result {
    margin-top: 20px;
    padding: 15px;
    border-radius: 5px;
    font-weight: 500;
}

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

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

.result p {
    margin: 0;
    padding: 0;
}

/* Form submission loading state */
.contact-form-validated.submitting {
    opacity: 0.7;
    pointer-events: none;
}

.contact-form-validated.submitting .contact-one__btn {
    background-color: #6c757d;
    cursor: not-allowed;
} 