/* Premium Glassmorphism & Animations */
.glass-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 24px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1) !important;
}

.fade-in-up {
    animation: fadeInUp 0.6s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    opacity: 0;
    transform: translateY(20px);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Input Styling */
.input-group-text {
    background-color: white !important;
    border-color: #e2e8f0;
    transition: border-color 0.2s;
}

.form-control {
    border-color: #e2e8f0;
    transition: border-color 0.2s;
}

.input-group:focus-within .input-group-text,
.input-group:focus-within .form-control {
    border-color: var(--bs-primary);
    box-shadow: none;
}

.btn-primary {
    background: linear-gradient(45deg, var(--bs-primary), #4facfe);
    border: none;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(13, 110, 253, 0.3);
}