/* ==========================================================
   ZubPOS Enterprise Login
   Version : 1.0
   Author  : ChatGPT
========================================================== */
:root{
    --primary:#2563eb;
    --primary-dark:#1d4ed8;
    --secondary:#06b6d4;
    --success:#10b981;
    --warning:#f59e0b;
    --danger:#ef4444;
    --dark:#0f172a;
    --dark-2:#111827;
    --gray:#64748b;
    --light:#f8fafc;
    --white:#ffffff;
    --glass:rgba(255,255,255,.18);
    --border:rgba(255,255,255,.28);
    --shadow:0 25px 60px rgba(15,23,42,.18);
    --radius:24px;
    --transition:.35s ease;
}
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}
html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:linear-gradient(135deg,#eef5ff,#f8fbff,#edf8ff);
    color:var(--dark);
    overflow-x:hidden;
}
/* ==========================================================
   Background
========================================================== */

.login-wrapper{

    min-height:100vh;

    position:relative;

    overflow:hidden;

}

.bg-circle{

    position:absolute;

    border-radius:50%;

    filter:blur(60px);

    opacity:.5;

}

.bg-1{

    width:420px;

    height:420px;

    background:#60a5fa;

    top:-150px;

    left:-100px;

}

.bg-2{

    width:380px;

    height:380px;

    background:#67e8f9;

    right:-120px;

    bottom:-100px;

}

.bg-3{

    width:250px;

    height:250px;

    background:#bfdbfe;

    left:45%;

    top:40%;

}

/* ==========================================================
   Hero Section
========================================================== */

.hero-section{

    display:flex;

    align-items:center;

    padding:70px;

}

.hero-content{

    max-width:700px;

}

.logo-area{

    display:flex;

    align-items:center;

    gap:16px;

    margin-bottom:30px;

}

.logo{
    max-width:550px;
    height: auto;
}



.logo-area h3{
    font-size:32px;
    font-weight:700;

    margin-bottom:0;

}

.logo-area small{

    color:var(--gray);

}

.hero-badge{

    display:inline-flex;

    align-items:center;

    gap:10px;

    background:white;

    border-radius:50px;

    padding:12px 22px;

    color:var(--primary);

    font-weight:600;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.hero-title{

    font-size:60px;

    font-weight:800;

    margin-top:35px;

    line-height:1.15;

}

.hero-title span{

    display:block;

    color:var(--primary);

}

.hero-description{

    margin-top:25px;

    font-size:17px;

    color:var(--gray);

    line-height:1.9;

    max-width:620px;

}

/* ==========================================================
   Statistics
========================================================== */

.stats-card{

    background:white;

    border-radius:22px;

    padding:25px;

    box-shadow:0 20px 45px rgba(0,0,0,.06);

    transition:var(--transition);

}

.stats-card:hover{

    transform:translateY(-8px);

}

.stats-card h2{

    font-size:34px;

    font-weight:700;

    color:var(--primary);

}

.stats-card p{

    margin-top:6px;

    color:var(--gray);

    margin-bottom:0;

}

/* ==========================================================
   Dashboard
========================================================== */

.dashboard-preview{

    margin-top:45px;

    background:white;

    border-radius:28px;

    padding:32px;

    box-shadow:var(--shadow);

}

.dashboard-header{

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.dashboard-header h5{

    font-weight:700;

    margin-bottom:5px;

}

.dashboard-header small{

    color:var(--gray);

}

.dashboard-card{

    background:#f8fbff;

    border-radius:18px;

    padding:22px;

    transition:.35s;

    height:100%;

}

.dashboard-card:hover{

    transform:translateY(-6px);

}

.dashboard-card h3{

    margin-top:18px;

    font-size:28px;

    font-weight:700;

}

.dashboard-card small{

    color:var(--gray);

}

.icon{

    width:58px;

    height:58px;

    border-radius:16px;

    display:flex;

    align-items:center;

    justify-content:center;

    color:white;

    font-size:24px;

}

.icon.success{

    background:var(--success);

}

.icon.primary{

    background:var(--primary);

}

.icon.warning{

    background:var(--warning);

}

/* ==========================================================
   Fake Chart
========================================================== */

.chart-placeholder{

    background:#f9fbff;

    border-radius:20px;

    padding:24px;

}

.chart-header{

    display:flex;

    justify-content:space-between;

    margin-bottom:25px;

}

.fake-chart{

    display:flex;

    align-items:flex-end;

    justify-content:space-between;

    gap:12px;

    height:180px;

}

.fake-chart .bar{

    flex:1;

    border-radius:10px 10px 0 0;

    background:linear-gradient(180deg,#3b82f6,#06b6d4);

}

.h40{height:40%;}
.h55{height:55%;}
.h60{height:60%;}
.h70{height:70%;}
.h75{height:75%;}
.h90{height:90%;}
.h100{height:100%;}

/* ==========================================================
   LOGIN SECTION
========================================================== */

.login-section{
    display:block;
    justify-content:center;
    align-items:center;
    padding:60px;
    position:relative;
    z-index:2;
}

.login-card{
    width:100%;
    max-width:520px;
    background:rgba(255,255,255,.72);
    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);
    border:1px solid rgba(255,255,255,.35);
    border-radius:32px;
    padding:45px;
    box-shadow:
        0 25px 60px rgba(15,23,42,.15),
        0 10px 25px rgba(37,99,235,.08);

}

.login-logo{

    width:90px;

}

.login-card h3{

    font-weight:700;

    color:var(--dark);

}

.login-card p{

    color:var(--gray);

}

/* ==========================================================
   FORM
========================================================== */

.form-label{

    font-size:14px;

    font-weight:600;

    margin-bottom:8px;

    color:var(--dark);

}

.modern-input{

    background:#fff;

    border-radius:16px;

    overflow:hidden;

    border:1px solid #e2e8f0;

    transition:.3s;

}

.modern-input:focus-within{

    border-color:var(--primary);

    box-shadow:
        0 0 0 4px rgba(37,99,235,.08);

}

.modern-input .input-group-text{

    background:white;

    border:none;

    color:var(--primary);

    padding-left:18px;

}

.modern-input .form-control{

    border:none;

    height:56px;

    box-shadow:none;

    font-size:15px;

}

.modern-input .form-select{

    border:none;

    height:56px;

    box-shadow:none;

    font-size:15px;

}

.modern-input .form-control:focus,

.modern-input .form-select:focus{

    box-shadow:none;

}

/* ==========================================================
   PASSWORD BUTTON
========================================================== */

.password-toggle{

    border:none;

    background:white;

    padding:0 18px;

    color:#64748b;

}

.password-toggle:hover{

    color:var(--primary);

}

/* ==========================================================
   REMEMBER
========================================================== */

.form-check-input{

    border-radius:6px;

}

.form-check-input:checked{

    background:var(--primary);

    border-color:var(--primary);

}

.form-check-label{

    color:#475569;

    font-size:14px;

}

.forgot-link{

    text-decoration:none;

    font-size:14px;

    font-weight:600;

    color:var(--primary);

}

.forgot-link:hover{

    text-decoration:underline;

}

/* ==========================================================
   LOGIN BUTTON
========================================================== */

.btn-login{

    height:58px;

    border:none;

    border-radius:18px;

    font-weight:700;

    font-size:16px;

    color:white;

    background:
        linear-gradient(
            135deg,
            #2563eb,
            #06b6d4
        );

    transition:.35s;

    box-shadow:
        0 15px 35px
        rgba(37,99,235,.35);

}

.btn-login:hover{

    transform:translateY(-3px);

    color:white;

    box-shadow:
        0 20px 45px
        rgba(37,99,235,.45);

}

.btn-login:active{

    transform:scale(.98);

}

/* ==========================================================
   DIVIDER
========================================================== */

.divider{

    position:relative;

    text-align:center;

}

.divider::before{

    content:"";

    position:absolute;

    top:50%;

    left:0;

    width:100%;

    height:1px;

    background:#e2e8f0;

}

.divider span{

    position:relative;

    padding:0 18px;

    background:white;

    color:#94a3b8;

    font-size:13px;

}

/* ==========================================================
   MINI FEATURES
========================================================== */

.mini-feature{

    padding:18px;

    border-radius:18px;

    background:#f8fbff;

    transition:.3s;

}

.mini-feature:hover{

    transform:translateY(-6px);

    background:white;

    box-shadow:
        0 12px 30px rgba(0,0,0,.08);

}

.mini-feature i{

    font-size:28px;

    color:var(--primary);

    display:block;

    margin-bottom:10px;

}

.mini-feature small{

    display:block;

    font-weight:600;

    color:#475569;

}

/* ==========================================================
   LOGIN FOOTER
========================================================== */

.login-footer{

    color:#94a3b8;

    font-size:13px;

}

.login-footer a{

    color:var(--primary);

    text-decoration:none;

}

.login-footer a:hover{

    text-decoration:underline;

}

/* ==========================================================
   FLOATING CARDS
========================================================== */

.floating-card{

    position:absolute;

    display:flex;

    align-items:center;

    gap:14px;

    background:rgba(255,255,255,.92);

    backdrop-filter:blur(16px);

    padding:16px 20px;

    border-radius:18px;

    box-shadow:0 20px 45px rgba(15,23,42,.12);

    animation:floating 5s ease-in-out infinite;

    z-index:10;

}

.floating-card h5{

    margin:0;

    font-size:20px;

    font-weight:700;

}

.floating-card small{

    color:var(--gray);

}

.floating-icon{

    width:52px;

    height:52px;

    border-radius:14px;

    display:flex;

    align-items:center;

    justify-content:center;

    color:#fff;

    font-size:22px;

}

.floating-sales{

    top:120px;

    right:110px;

}

.floating-order{

    top:320px;

    right:40px;

    animation-delay:1.5s;

}

.floating-users{

    bottom:120px;

    right:120px;

    animation-delay:3s;

}

/* ==========================================================
   TRUSTED SECTION
========================================================== */

.trusted-section{

    padding:80px 0;

    background:#ffffff;

}

.trusted-title{

    color:var(--gray);

    font-size:15px;

    font-weight:600;

    letter-spacing:1px;

    text-transform:uppercase;

}

.brand-box{

    background:#f8fbff;

    border-radius:20px;

    padding:30px 15px;

    text-align:center;

    transition:.35s;

    height:100%;

}

.brand-box:hover{

    transform:translateY(-8px);

    background:#fff;

    box-shadow:0 18px 40px rgba(0,0,0,.08);

}

.brand-box i{

    display:block;

    font-size:38px;

    margin-bottom:15px;

    color:var(--primary);

}

.brand-box span{

    font-weight:600;

    color:#334155;

}

/* ==========================================================
   FOOTER
========================================================== */

.footer-simple{

    padding:25px 0;

    background:#0f172a;

    color:#cbd5e1;

}

.footer-simple a{

    color:#e2e8f0;

    text-decoration:none;

    transition:.3s;

}

.footer-simple a:hover{

    color:#38bdf8;

}

/* ==========================================================
   ANIMATION
========================================================== */

@keyframes floating{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-12px);

    }

    100%{

        transform:translateY(0);

    }

}

.dashboard-card,
.stats-card,
.brand-box,
.mini-feature,
.login-card{

    transition:all .35s ease;

}

.dashboard-card:hover,
.stats-card:hover,
.brand-box:hover,
.mini-feature:hover{

    transform:translateY(-8px);

}

/* ==========================================================
   RESPONSIVE
========================================================== */

@media (max-width:1400px){

.hero-title{

    font-size:52px;

}

.hero-section{

    padding:55px;

}

.login-section{

    padding:40px;

}

}

@media (max-width:1200px){

.hero-title{

    font-size:44px;

}

.hero-description{

    font-size:16px;

}

.floating-card{

    display:none;

}

}

@media (max-width:992px){

.hero-section{

    padding:60px 30px 20px;

}

.login-section{

    padding:30px;

}

.hero-content{

    text-align:center;

}

.logo-area{

    justify-content:center;

}

.hero-description{

    margin:auto;

    margin-top:20px;

}

.dashboard-preview{

    margin-top:35px;

}

.stats-card{

    margin-bottom:20px;

}

.login-card{

    margin-top:30px;

}

}

@media (max-width:768px){

.hero-title{

    font-size:36px;

}

.hero-description{

    font-size:15px;

}

.dashboard-preview{

    padding:22px;

}

.dashboard-card{

    margin-bottom:18px;

}

.login-card{

    padding:32px;

}

.logo{

    max-width:250px;

}

.login-logo{

    width:72px;

}

.brand-box{

    margin-bottom:15px;

}

.footer-simple{

    text-align:center;

}

.footer-simple .text-md-end{

    text-align:center!important;

    margin-top:12px;

}

}

@media (max-width:576px){

.hero-section{

    padding:40px 20px;

}

.login-section{

    padding:20px;

}

.hero-title{

    font-size:30px;

}

.hero-badge{

    font-size:13px;

    padding:10px 18px;

}

.login-card{

    border-radius:24px;

    padding:24px;

}

.stats-card{

    padding:20px;

}

.dashboard-card{

    padding:18px;

}

.btn-login{

    height:54px;

}

}

/* ==========================================================
   SCROLLBAR
========================================================== */

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-thumb{

    background:linear-gradient(
        #2563eb,
        #06b6d4
    );

    border-radius:20px;

}

::-webkit-scrollbar-track{

    background:#eef5ff;

}