/* Global Styles & Glassmorphism */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #0f0c29;
    background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
    color: #fff;
    min-height: 100vh;
}

.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px 0 rgba(111, 66, 193, 0.3);
    border-color: rgba(111, 66, 193, 0.5);
}

.btn-glow {
    background: linear-gradient(90deg, #6f42c1, #9b59b6);
    border: none;
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    box-shadow: 0 0 15px rgba(111, 66, 193, 0.5);
    transition: all 0.3s ease;
}

.btn-glow:hover {
    background: linear-gradient(90deg, #5a32a3, #8e44ad);
    color: white;
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(111, 66, 193, 0.8);
}

.btn-outline-glow {
    border: 2px solid #6f42c1;
    color: #9b59b6;
    border-radius: 30px;
    padding: 10px 28px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-glow:hover {
    background: #6f42c1;
    color: white;
    box-shadow: 0 0 15px rgba(111, 66, 193, 0.5);
}

/* Auth Forms */
.auth-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
}

.form-control {
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: white !important;
    border-radius: 10px;
    padding: 12px;
}

.form-control:focus {
    background: rgba(255, 255, 255, 0.15) !important;
    border-color: #6f42c1 !important;
    box-shadow: 0 0 10px rgba(111, 66, 193, 0.3) !important;
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

/* Mobile Responsive Fixes for Landing Page */
@media (max-width: 767.98px) {
    h1.display-3 {
        font-size: 2.2rem !important;
    }
    .lead {
        font-size: 1rem !important;
    }
    .glass-card {
        padding: 20px !important;
    }
    .btn-glow, .btn-outline-glow {
        padding: 10px 20px !important;
        font-size: 0.9rem !important;
    }
}