@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Orbitron:wght@500;700&display=swap');

:root {
    --bg: #070b14;
    --card: #111827;
    --card2: #0f172a;
    --primary: #7c3aed;
    --primary2: #9333ea;
    --text: #ffffff;
    --muted: #9ca3af;
    --border: rgba(255,255,255,0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: linear-gradient(to bottom right,#070b14,#0f172a);
    color: var(--text);
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
}

.navbar {
    background: rgba(10,10,20,.7);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
}

.navbar-brand {
    font-family: 'Orbitron', sans-serif;
    font-size: 28px;
    color: white !important;
}

.nav-link {
    color: #ddd !important;
    transition: .3s;
}

.nav-link:hover {
    color: var(--primary) !important;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-box {
    background: rgba(255,255,255,.03);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 60px;
    backdrop-filter: blur(15px);
    box-shadow: 0 0 30px rgba(124,58,237,.2);
}

.hero-title {
    font-size: 65px;
    font-weight: 700;
    margin-bottom: 20px;
}

.gradient-text {
    background: linear-gradient(to right,#7c3aed,#c084fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-desc {
    color: var(--muted);
    font-size: 18px;
    margin-bottom: 30px;
}

.btn-primary-custom {
    background: linear-gradient(to right,#7c3aed,#9333ea);
    border: none;
    padding: 14px 28px;
    border-radius: 14px;
    color: white;
    text-decoration: none;
    transition: .3s;
    display: inline-block;
}

.btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(124,58,237,.5);
    color: white;
}

.auth-card {
    background: rgba(255,255,255,.03);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 40px;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 25px rgba(124,58,237,.2);
}

.form-control {
    background: #0b1220;
    border: 1px solid rgba(255,255,255,.08);
    color: white;
    padding: 14px;
    border-radius: 12px;
}

.form-control:focus {
    background: #0b1220;
    color: white;
    border-color: var(--primary);
    box-shadow: 0 0 0 .2rem rgba(124,58,237,.2);
}

.dashboard-card {
    background: rgba(255,255,255,.03);
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 25px;
    transition: .3s;
}

.dashboard-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 25px rgba(124,58,237,.2);
}

.stat-number {
    font-size: 32px;
    font-weight: 700;
}

.profile-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    cursor: pointer;
}

@media(max-width:768px){
    .hero-title {
        font-size: 42px;
    }

    .hero-box {
        padding: 35px;
    }
}
.form-control::placeholder{
    color: rgba(255,255,255,0.55) !important;
    opacity: 1;
}

.form-control::-webkit-input-placeholder{
    color: rgba(255,255,255,0.55) !important;
}

.form-control::-moz-placeholder{
    color: rgba(255,255,255,0.55) !important;
}

.form-control:-ms-input-placeholder{
    color: rgba(255,255,255,0.55) !important;
}