/* Glassmorphism Classes */
.glass-panel {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.glass-button {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.glass-button:hover {
    background: rgba(255, 255, 255, 0.2);
}

.text-gradient {
    background: linear-gradient(to right, #2563EB, #7C3AED, #10B981);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.input-field {
    width: 100%;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    /* rounded-lg */
    padding: 1rem;
    color: white;
    outline: none;
    transition: border-color 0.3s;
}

.input-field:focus {
    border-color: #7C3AED;
}