/* Address input glow effect */
.address-glow {
    background: #ffffff;
    border: 1px solid #d1d5db;
    border-radius: 12px;
    transition: all 0.2s;
    box-shadow: 0 0 12px 2px rgba(252, 86, 71, 0.25), 0 0 24px 4px rgba(252, 86, 71, 0.1);
    animation: input-glow 1.5s ease-out;
}

@keyframes input-glow {
    0% {
        box-shadow: 0 0 0 0 rgba(252, 86, 71, 0);
    }
    30% {
        box-shadow: 0 0 25px 6px rgba(252, 86, 71, 0.5), 0 0 50px 12px rgba(252, 86, 71, 0.25);
    }
    100% {
        box-shadow: 0 0 12px 2px rgba(252, 86, 71, 0.25), 0 0 24px 4px rgba(252, 86, 71, 0.1);
    }
}

.address-glow:focus {
    outline: none;
    border-color: #FC5647;
    box-shadow: 0 0 0 3px rgba(252, 86, 71, 0.1);
    animation: none;
}
