.wc-box-office-ticket-fields-body input[type="text"] {
    transition: border-color 0.3s ease;
}

.wc-box-office-ticket-fields-body input[type="text"]:focus {
    border-color: #007bff;
    outline: none;
    box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
}

.email-validation-error {
    color: #f34051;
    display: block;
    margin-top: 5px;
    font-size: 1.0875em;
    animation: fadeIn 0.75s ease;
}

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

.wc-box-office-ticket-fields-body input[type="text"].error {
    border-color: #f34051 !important;
}

.wc-box-office-ticket-fields-body input[type="text"].error:focus {
    box-shadow: 0 0 0 2px rgba(220, 53, 69, 0.25);
}
