/*
 Theme Name:   Bricks Child Theme
 Theme URI:    https://bricksbuilder.io/
 Description:  Use this child theme to extend Bricks.
 Author:       Bricks
 Author URI:   https://bricksbuilder.io/
 Template:     bricks
 Version:      1.1
 Text Domain:  bricks
*/

/* Form Validation */

/* --- Input Error Highlight --- */
.ft-input-error {
    border-color: #ef4444 !important;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15) !important;
    transition: border-color 0.2s, box-shadow 0.2s;
}

/* --- Inline Error Message --- */
.ft-error-message {
    color: #ef4444;
    font-size: 13px;
    font-weight: 500;
    margin-top: 6px;
    display: block;
    opacity: 0;
    transform: translateY(-4px);
    transition: all 0.2s ease-out;
}

.ft-error-message.visible {
    opacity: 1;
    transform: translateY(0);
}

