/* Custom styles */

/* Form focus state */
.form-input:focus {
    border-color: #fc5e03;
    box-shadow: 0 0 0 3px rgba(252, 94, 3, 0.2);
}

/* Button hover effects */
.btn-brand:hover {
    background-color: #e95400;
}

/* Animation for success message */
.success-message {
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
} 