@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Inter',sans-serif;
    min-height:100vh;
    background:#07131d;
    overflow-x:hidden;
    color:#fff;
    position:relative;
}

/* LOGIN PAGE */

.login-page{
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
}

/* ANIMATED BACKGROUND */

.bg{
    position:fixed;
    inset:0;
    overflow:hidden;
    z-index:1;
}

.circle{
    position:absolute;
    border-radius:50%;
    filter:blur(100px);
}

.circle1{
    width:450px;
    height:450px;
    background:#12c7d8;
    opacity:.15;
    top:-150px;
    left:-150px;
    animation:float1 10s infinite ease-in-out;
}

.circle2{
    width:400px;
    height:400px;
    background:#12c7d8;
    opacity:.10;
    right:-150px;
    bottom:-150px;
    animation:float2 12s infinite ease-in-out;
}

.circle3{
    width:300px;
    height:300px;
    background:#12c7d8;
    opacity:.08;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
}

@keyframes float1{
    0%,100%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(40px);
    }
}

@keyframes float2{
    0%,100%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-40px);
    }
}

/* LOGIN */

.login-wrapper{
    position:relative;
    z-index:10;
    width:100%;
    max-width:440px;
    padding:20px;
}

.login-card{
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.08);
    backdrop-filter:blur(25px);
    border-radius:28px;
    padding:40px;
    box-shadow:0 0 60px rgba(18,199,216,.15);
}

.logo{
    text-align:center;
    margin-bottom:35px;
}

.logo h1{
    color:#12c7d8;
    font-size:48px;
    font-weight:800;
    letter-spacing:2px;
}

.logo p{
    color:#9fb0be;
    margin-top:10px;
    font-size:14px;
}

.form-group{
    margin-bottom:18px;
}

.form-group input{
    width:100%;
    height:56px;
    background:#102130;
    border:none;
    border-radius:14px;
    padding:0 18px;
    color:white;
    outline:none;
    font-size:15px;
}

.form-group input::placeholder{
    color:#8092a1;
}

.login-btn{
    width:100%;
    height:56px;
    border:none;
    border-radius:14px;
    background:#12c7d8;
    color:white;
    font-size:15px;
    font-weight:700;
    cursor:pointer;
    transition:.3s;
}

.login-btn:hover{
    transform:translateY(-2px);
}

.footer-text{
    text-align:center;
    margin-top:25px;
    color:#7f90a0;
    font-size:13px;
}

/* DASHBOARD */

.dashboard{
    position:relative;
    z-index:10;
    width:100%;
    min-height:100vh;
    padding:30px;
}

.topbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:30px;
}

.topbar h1{
    color:#12c7d8;
}

.logout-btn{
    background:#12c7d8;
    color:white;
    padding:12px 20px;
    border-radius:12px;
    text-decoration:none;
    font-weight:600;
}

.cards{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
}

.card{
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.08);
    backdrop-filter:blur(20px);
    border-radius:24px;
    padding:30px;
    transition:.3s;
}

.card:hover{
    transform:translateY(-5px);
}

.card h3{
    color:#12c7d8;
    margin-bottom:10px;
}

.card p{
    color:#9fb0be;
}

/* MOBILE */

@media(max-width:768px){

    .dashboard{
        padding:15px;
    }

    .topbar{
        flex-direction:column;
        gap:15px;
        align-items:flex-start;
    }

    .login-card{
        padding:25px;
    }

    .logo h1{
        font-size:38px;
    }

}
/* PREMIUM DASHBOARD */

.dashboard-layout{
    position:relative;
    z-index:10;
    display:flex;
    min-height:100vh;
}

.sidebar{
    width:280px;
    background:rgba(255,255,255,.04);
    backdrop-filter:blur(20px);
    border-right:1px solid rgba(255,255,255,.08);
    padding:25px;
}

.sidebar-logo{
    text-align:center;
    margin-bottom:35px;
}

.sidebar-logo img{
    max-width:170px;
}

.menu{
    display:flex;
    flex-direction:column;
    gap:12px;
}

.menu a{
    text-decoration:none;
    color:#c7d5e0;
    padding:14px 16px;
    border-radius:14px;
    transition:.3s;
}

.menu a:hover{
    background:rgba(18,199,216,.15);
    color:#12c7d8;
}

.main-content{
    flex:1;
    padding:30px;
}

.page-title{
    font-size:32px;
    font-weight:700;
    color:#12c7d8;
    margin-bottom:25px;
}

.stats{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:20px;
    margin-bottom:30px;
}

.stat-card{
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.08);
    backdrop-filter:blur(20px);
    border-radius:24px;
    padding:25px;
}

.stat-card h3{
    color:#8ea3b3;
    font-size:14px;
    margin-bottom:10px;
}

.stat-card span{
    color:#12c7d8;
    font-size:34px;
    font-weight:800;
}

.action-card{
    background:linear-gradient(135deg,#12c7d8,#0ea9b8);
    border-radius:28px;
    padding:35px;
    margin-bottom:30px;
}

.action-card h2{
    margin-bottom:10px;
}

.action-btn{
    display:inline-block;
    margin-top:15px;
    background:#07131d;
    color:white;
    text-decoration:none;
    padding:14px 24px;
    border-radius:14px;
    font-weight:700;
}

.table-card{
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.08);
    backdrop-filter:blur(20px);
    border-radius:24px;
    padding:25px;
}

.table-card h2{
    margin-bottom:20px;
}

.empty-state{
    color:#8ea3b3;
}

@media(max-width:992px){

    .dashboard-layout{
        flex-direction:column;
    }

    .sidebar{
        width:100%;
    }

}
/* MOBILE APP DASHBOARD */

.app-container{
    position:relative;
    z-index:10;
    max-width:900px;
    margin:auto;
    padding:20px;
    padding-bottom:100px;
}

.app-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:20px;
}

.app-logo{
    height:70px;
    width:auto;
}

.user-box{
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.08);
    border-radius:20px;
    padding:12px 18px;
    color:#12c7d8;
    font-weight:600;
}

.welcome-card{
    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.08);
    backdrop-filter:blur(20px);
    border-radius:28px;
    padding:24px;
    margin-bottom:20px;
}

.welcome-card h2{
    font-size:28px;
    margin-bottom:8px;
}

.welcome-card p{
    color:#8ea3b3;
}

.scan-card{
    background:linear-gradient(135deg,#12c7d8,#18b7ff);
    border-radius:32px;
    padding:30px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:25px;
    box-shadow:0 0 40px rgba(18,199,216,.30);
}

.scan-card h1{
    font-size:34px;
    margin-bottom:10px;
}

.scan-card p{
    color:white;
}

.scan-btn{
    width:70px;
    height:70px;
    border-radius:50%;
    background:#07131d;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    color:white;
    font-size:34px;
    flex-shrink:0;
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:15px;
    margin-bottom:25px;
}

.stat-box{
    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.08);
    border-radius:24px;
    padding:20px;
    text-align:center;
}

.stat-box h3{
    color:#8ea3b3;
    font-size:14px;
    margin-bottom:12px;
}

.stat-box span{
    color:#12c7d8;
    font-size:34px;
    font-weight:800;
}

.menu-cards{
    display:flex;
    flex-direction:column;
    gap:15px;
    margin-bottom:25px;
}

.menu-card{
    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.08);
    border-radius:24px;
    padding:22px;
    text-decoration:none;
    color:white;
    transition:.3s;
}

.menu-card:hover{
    border-color:#12c7d8;
    transform:translateY(-2px);
}

.menu-card h3{
    margin-bottom:5px;
}

.menu-card p{
    color:#8ea3b3;
}

.recent-card{
    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.08);
    border-radius:24px;
    padding:24px;
}

.recent-header{
    margin-bottom:15px;
}

.empty-state{
    color:#8ea3b3;
}

.bottom-nav{
    position:fixed;
    left:0;
    right:0;
    bottom:0;
    height:75px;
    background:rgba(5,15,25,.95);
    backdrop-filter:blur(20px);
    border-top:1px solid rgba(255,255,255,.08);
    display:flex;
    z-index:999;
}

.bottom-nav a{
    flex:1;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    color:#8ea3b3;
    font-size:14px;
}

.bottom-nav a.active{
    color:#12c7d8;
    font-weight:700;
}

@media(max-width:768px){

    .app-logo{
        height:55px;
    }

    .scan-card{
        flex-direction:column;
        align-items:flex-start;
        gap:20px;
    }

    .scan-card h1{
        font-size:28px;
    }

    .stats-grid{
        grid-template-columns:1fr;
    }

    .user-box{
        display:none;
    }

}