.bg-mesh {
    background-color: #1E40AF;
    background-image: 
        radial-gradient(at 0% 0%, #D946EF 0, transparent 50%), 
        radial-gradient(at 100% 0%, #FBBF24 0, transparent 50%), 
        radial-gradient(at 100% 100%, #1E40AF 0, transparent 50%), 
        radial-gradient(at 0% 100%, #D946EF 0, transparent 50%);
}

.glass-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
}

.floating-accent {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

.image-frame {
    position: relative;
}

.image-frame::after {
    content: '';
    position: absolute;
    inset: -10px;
    border: 2px solid rgba(217, 70, 239, 0.3);
    border-radius: 2rem;
    z-index: -1;
    transition: all 0.3s ease;
}

.image-frame:hover::after {
    inset: -15px;
    border-color: #D946EF;
}

.input-glass {
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(30, 64, 175, 0.1);
    transition: all 0.3s ease;
}

.input-glass:focus {
    background: rgba(255, 255, 255, 0.8);
    border-color: #1E40AF;
    box-shadow: 0 0 0 4px rgba(30, 64, 175, 0.1);
}
