/* ==========================================================
   KHARCHE - Home Expense Management System
   Version : 1.0
   Developer : MAQ IT Solutions
========================================================== */

:root{

    --primary:#2563EB;
    --success:#22C55E;
    --danger:#EF4444;
    --warning:#F59E0B;

    --dark:#0F172A;

    --light:#F8FAFC;

    --white:#FFFFFF;

    --border:#E5E7EB;

    --text:#374151;

    --radius:15px;

    --shadow:0 10px 25px rgba(0,0,0,.08);

}

*{

    margin:0;
    padding:0;
    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    background:var(--light);
    color:var(--text);
    font-family:'Segoe UI',Tahoma,Geneva,Verdana,sans-serif;
    font-size:15px;

}

/* ===============================
        LOGIN PAGE
================================ */

.login-page{

    min-height:100vh;

    display:flex;

    align-items:center;

    justify-content:center;

    background:linear-gradient(135deg,#2563EB,#0F172A);

    padding:20px;

}

.login-card{

    background:#fff;

    width:100%;

    max-width:420px;

    border-radius:20px;

    padding:35px;

    box-shadow:0 20px 40px rgba(0,0,0,.20);

    animation:fadeIn .5s;

}

@keyframes fadeIn{

from{

opacity:0;
transform:translateY(25px);

}

to{

opacity:1;
transform:translateY(0);

}

}

.logo{

    width:80px;

    height:80px;

    border-radius:50%;

    background:#2563EB;

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    margin:auto;

    font-size:34px;

}

.app-title{

    font-size:28px;

    font-weight:bold;

    text-align:center;

    margin-top:20px;

    color:#0F172A;

}

.app-subtitle{

    text-align:center;

    color:#6B7280;

    margin-bottom:30px;

}

.form-control{

    height:48px;

    border-radius:12px;

}

.form-control:focus{

    border-color:#2563EB;

    box-shadow:none;

}

.btn-login{

    height:50px;

    border-radius:12px;

    font-weight:600;

    font-size:17px;

}

.version{

    text-align:center;

    color:#9CA3AF;

    margin-top:25px;

    font-size:13px;

}

/* ===============================
        NAVBAR
================================ */

.navbar{

    box-shadow:var(--shadow);

}

.navbar-brand{

    font-weight:bold;

    font-size:24px;

}

/* ===============================
        DASHBOARD
================================ */

.dashboard-card{

    border:none;

    border-radius:18px;

    background:#fff;

    box-shadow:var(--shadow);

    transition:.3s;

    padding:25px;

}

.dashboard-card:hover{

    transform:translateY(-5px);

}

.dashboard-card i{

    font-size:32px;

}

.dashboard-card h2{

    margin-top:15px;

    margin-bottom:5px;

    font-weight:bold;

}

.dashboard-card p{

    color:#6B7280;

    margin:0;

}

/* ===============================
        TABLES
================================ */

.table{

    background:#fff;

}

.table thead{

    background:#2563EB;

    color:#fff;

}

/* ===============================
        BUTTONS
================================ */

.btn{

    border-radius:12px;

}

/* ===============================
        CARDS
================================ */

.card{

    border:none;

    border-radius:18px;

    box-shadow:var(--shadow);

}

/* ===============================
        FOOTER
================================ */

.footer{

    margin-top:30px;

    padding:20px;

    text-align:center;

    color:#6B7280;

}

/* ===============================
        MOBILE
================================ */

@media(max-width:768px){

.login-card{

padding:25px;

}

.app-title{

font-size:24px;

}

.dashboard-card{

margin-bottom:15px;

}

.navbar-brand{

font-size:20px;

}

}