/* ==========================================
   FormPilot SaaS - style.css
   PART 1 : RESET + NAVBAR + HERO
========================================== */

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

:root{

    color-scheme:light;
    --primary:#0F766E;
    --primary-dark:#115E59;
    --secondary:#14B8A6;
    --bg:#F8FAFC;
    --white:#ffffff;
    --dark:#111827;
    --gray:#6B7280;
    --light:#E5E7EB;
    --shadow:0 15px 35px rgba(0,0,0,.08);
    --radius:14px;

}

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

body{

    font-family:'Poppins',sans-serif;
    background:var(--bg);
    color:var(--dark);
    overflow-x:hidden;

}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

img{
    max-width:100%;
    display:block;
}

.container{

    width:90%;
    max-width:1200px;
    margin:auto;

}

/* ==========================================
   HEADER
========================================== */

.header{

    position:fixed;
    top:0;
    left:0;
    width:100%;

    background:#fff;

    box-shadow:0 5px 20px rgba(0,0,0,.05);

    z-index:999;

}

.navbar{

    height:80px;

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.logo{

    display:flex;

    align-items:center;

    gap:10px;

    color:var(--primary);

    font-size:28px;

    font-weight:700;

}

.logo i{

    font-size:30px;

}

.nav-menu{

    display:flex;

    align-items:center;

    gap:35px;

}

.nav-menu li{

    list-style:none;

}

.nav-menu a{

    color:#374151;

    font-weight:500;

    transition:.3s;

}

.nav-menu a:hover{

    color:var(--primary);

}

.mobile-menu{

    display:none;

    font-size:28px;

    cursor:pointer;

}

/* ==========================================
   BUTTONS
========================================== */

.btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:14px 28px;

    border-radius:10px;

    font-weight:600;

    transition:.3s;

    cursor:pointer;

}

.btn-primary{

    background:var(--primary);

    color:#fff;

}

.btn-primary:hover{

    background:var(--primary-dark);

    transform:translateY(-3px);

}

.btn-outline{

    border:2px solid var(--primary);

    color:var(--primary);

}

.btn-outline:hover{

    background:var(--primary);

    color:#fff;

}



/* ==========================================
   HERO
========================================== */

.hero{

    padding:150px 0 80px;

}

.hero-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    align-items:center;

    gap:70px;

}

.badge{

    display:inline-block;

    background:#D1FAE5;

    color:#065F46;

    padding:10px 20px;

    border-radius:40px;

    margin-bottom:25px;

    font-size:14px;

    font-weight:600;

}

.hero h1{

    font-size:58px;

    line-height:1.15;

    margin-bottom:20px;

}

.hero p{

    color:var(--gray);

    font-size:18px;

    line-height:1.8;

    margin-bottom:35px;

}

.hero-buttons{

    display:flex;

    gap:20px;

    flex-wrap:wrap;

}

.hero-stats{

    display:flex;

    gap:40px;

    margin-top:50px;

}

.stat h2{

    color:var(--primary);

    font-size:32px;

}

.stat p{

    margin-top:8px;

    color:var(--gray);

    font-size:15px;

}

/* ==========================================
   DASHBOARD PREVIEW
========================================== */

.dashboard-preview{

    background:#fff;

    border-radius:18px;

    overflow:hidden;

    box-shadow:var(--shadow);

}

.dashboard-header{

    display:flex;

    align-items:center;

    gap:10px;

    padding:18px;

    background:#f3f4f6;

}

.circle{

    width:14px;

    height:14px;

    border-radius:50%;

}

.red{

    background:#ef4444;

}

.yellow{

    background:#f59e0b;

}

.green{

    background:#22c55e;

}

.dashboard-body{

    padding:30px;

}

.dashboard-card{

    background:#f9fafb;

    border-radius:12px;

    padding:20px;

    margin-bottom:20px;

    box-shadow:0 5px 15px rgba(0,0,0,.05);

}

.dashboard-card h4{

    color:var(--gray);

    font-size:15px;

    margin-bottom:8px;

}

.dashboard-card h2{

    color:var(--primary);

    font-size:28px;

}

.progress-bar{

    height:10px;

    background:#e5e7eb;

    border-radius:20px;

    overflow:hidden;

    margin-top:20px;

}

.progress-fill{

    width:92%;

    height:100%;

    background:var(--primary);

    border-radius:20px;

}

/* ==========================================
   SECTION TITLE
========================================== */

section{

    padding:90px 0;

}

.section-title{

    text-align:center;

    margin-bottom:60px;

}

.section-title h2{

    font-size:42px;

    margin-bottom:15px;

}

.section-title p{

    color:var(--gray);

    max-width:650px;

    margin:auto;

    line-height:1.8;

}

/* ==========================================
   PART 2 : FEATURES + WORKFLOW + TRUSTED
========================================== */

/* ========= FEATURES ========= */

.features{

    background:#ffffff;

}

.feature-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.feature-card{

    background:#fff;

    border-radius:16px;

    padding:35px;

    text-align:center;

    transition:.35s;

    box-shadow:0 10px 25px rgba(0,0,0,.06);

    border:1px solid #eef2f7;

}

.feature-card:hover{

    transform:translateY(-10px);

    box-shadow:0 18px 35px rgba(0,0,0,.12);

}

.feature-icon{

    width:80px;

    height:80px;

    margin:auto;

    margin-bottom:25px;

    background:#E6FFFA;

    color:var(--primary);

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:32px;

}

.feature-card h3{

    font-size:22px;

    margin-bottom:15px;

}

.feature-card p{

    color:var(--gray);

    line-height:1.8;

    font-size:15px;

}

/* ========= WORKFLOW ========= */

.workflow{

    background:#F8FAFC;

}

.workflow-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

}

.workflow-card{

    background:#fff;

    border-radius:16px;

    padding:35px 25px;

    text-align:center;

    transition:.35s;

    box-shadow:0 10px 25px rgba(0,0,0,.06);

}

.workflow-card:hover{

    transform:translateY(-8px);

}

.step-number{

    width:70px;

    height:70px;

    margin:auto;

    margin-bottom:25px;

    background:var(--primary);

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    font-size:26px;

    font-weight:700;

}

.workflow-card h3{

    margin-bottom:15px;

    font-size:22px;

}

.workflow-card p{

    color:var(--gray);

    line-height:1.7;

}

/* ========= TRUSTED ========= */

.trusted{

    background:linear-gradient(135deg,#0F766E,#115E59);

    color:#fff;

}

.trusted h2{

    text-align:center;

    margin-bottom:50px;

    font-size:40px;

}

.trusted-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.trusted-item{

    background:rgba(255,255,255,.10);

    backdrop-filter:blur(10px);

    border-radius:16px;

    padding:35px;

    text-align:center;

    transition:.3s;

}

.trusted-item:hover{

    transform:translateY(-8px);

    background:rgba(255,255,255,.18);

}

.trusted-item h3{

    font-size:42px;

    margin-bottom:10px;

    color:#fff;

}

.trusted-item p{

    color:#dbeafe;

    font-size:16px;

}

/* ========= COMMON CARD ========= */

.card{

    background:#fff;

    border-radius:16px;

    padding:30px;

    box-shadow:0 10px 25px rgba(0,0,0,.06);

}

/* ========= HOVER EFFECT ========= */

.feature-card,
.workflow-card,
.trusted-item{

    transition:all .35s ease;

}

/* ========= SECTION SPACING ========= */

.features,
.workflow,
.trusted{

    padding:100px 0;

}

/* ==========================================
   PART 3 : PRICING + TESTIMONIALS + FAQ
========================================== */

/* ========= PRICING ========= */

.pricing{
    background:#ffffff;
}

.pricing-card{

    max-width:420px;

    margin:auto;

    background:#fff;

    border-radius:18px;

    padding:45px;

    text-align:center;

    box-shadow:0 20px 45px rgba(0,0,0,.08);

    position:relative;

    transition:.35s;

}

.pricing-card:hover{

    transform:translateY(-10px);

}

.popular{

    position:absolute;

    top:-15px;

    left:50%;

    transform:translateX(-50%);

    background:var(--primary);

    color:#fff;

    padding:8px 20px;

    border-radius:30px;

    font-size:13px;

    font-weight:600;

}

.pricing-card h3{

    margin-top:20px;

    font-size:28px;

}

.pricing-card h1{

    font-size:60px;

    color:var(--primary);

    margin:20px 0 10px;

}

.pricing-card p{

    color:var(--gray);

    margin-bottom:25px;

}

.pricing-card ul{

    text-align:left;

    margin-bottom:35px;

}

.pricing-card ul li{

    padding:12px 0;

    border-bottom:1px solid #f0f0f0;

    color:#374151;

}

/* ========= TESTIMONIALS ========= */

.testimonials{

    background:#F8FAFC;

}

.testimonial-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.testimonial{

    background:#fff;

    border-radius:16px;

    padding:35px;

    box-shadow:0 10px 30px rgba(0,0,0,.06);

    transition:.35s;

}

.testimonial:hover{

    transform:translateY(-8px);

}

.testimonial p:first-child{

    font-size:22px;

    color:#f59e0b;

    margin-bottom:20px;

}

.testimonial p{

    color:var(--gray);

    line-height:1.8;

}

.testimonial h4{

    margin-top:25px;

    font-size:20px;

}

.testimonial span{

    color:#6B7280;

    font-size:14px;

}

/* ========= FAQ ========= */

.faq{

    background:#ffffff;

}

.faq-item{

    max-width:850px;

    margin:20px auto;

    background:#fff;

    border-radius:12px;

    overflow:hidden;

    box-shadow:0 8px 20px rgba(0,0,0,.05);

}

.question{

    width:100%;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:22px 25px;

    border:none;

    background:#fff;

    cursor:pointer;

    font-size:18px;

    font-weight:600;

}

.question i{

    color:var(--primary);

    transition:.3s;

}

.answer{

    max-height:0;

    overflow:hidden;

    padding:0 25px;

    color:#6B7280;

    line-height:1.8;

    transition:max-height .4s ease,padding .3s;

}

.faq-item.active .answer{

    max-height:250px;

    padding:0 25px 25px;

}

.faq-item.active i{

    transform:rotate(180deg);

}

/* ========= CTA ========= */

.cta{

    background:linear-gradient(135deg,#0F766E,#115E59);

    color:#fff;

    text-align:center;

}

.cta h2{

    font-size:48px;

    margin-bottom:20px;

}

.cta p{

    font-size:18px;

    margin-bottom:35px;

    color:#E5E7EB;

}

/* ========= CONTACT ========= */

.contact{

    background:#ffffff;

}

.contact-box{

    max-width:700px;

    margin:auto;

    text-align:center;

    background:#fff;

    border-radius:18px;

    padding:45px;

    box-shadow:0 12px 30px rgba(0,0,0,.06);

}

.contact-box p{

    font-size:20px;

    margin:18px 0;

    color:#374151;

}

/* ========= FOOTER ========= */

footer{

    background:#111827;

    color:#fff;

    padding:60px 0 20px;

}

.footer-content{

    display:flex;

    justify-content:space-between;

    align-items:flex-start;

    gap:40px;

}

.footer-content h3{

    font-size:28px;

    margin-bottom:15px;

}

.footer-content p{

    color:#9CA3AF;

}

.footer-content a{

    display:block;

    color:#D1D5DB;

    margin-bottom:12px;

    transition:.3s;

}

.footer-content a:hover{

    color:#fff;

}

footer hr{

    border:none;

    height:1px;

    background:#374151;

    margin:35px 0 20px;

}

.copyright{

    text-align:center;

    color:#9CA3AF;

    font-size:14px;

}



/* ==========================================
   PART 4 : LOGIN + REGISTER + AUTH PAGES
   (legacy — your current login.html / register.html use
   the separate styles.css file instead. Kept here in case
   anything else still relies on these classes; harmless if not.)
========================================== */

/* ========= AUTH PAGE ========= */

.auth-page{
    background:linear-gradient(135deg,#F8FAFC,#ECFDF5);
    min-height:100vh;
}

/* ========= AUTH HEADER ========= */

.auth-header{
    width:100%;
    background:#fff;
    padding:18px 0;
    box-shadow:0 5px 20px rgba(0,0,0,.05);
}

.auth-header .logo{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* ========= AUTH SECTION ========= */

.auth-section{
    min-height:calc(100vh - 80px);
    display:flex;
    align-items:center;
    justify-content:center;
    padding:60px 20px;
}

.auth-container{

    width:100%;
    max-width:1200px;

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;

}

/* ========= LEFT SIDE ========= */

.auth-left h1{

    font-size:52px;

    line-height:1.2;

    margin:20px 0;

}

.auth-left p{

    color:#6B7280;

    font-size:18px;

    line-height:1.8;

    margin-bottom:35px;

}

.benefits{

    display:flex;

    flex-direction:column;

    gap:18px;

}

.benefits li{

    display:flex;

    align-items:center;

    gap:12px;

    font-size:17px;

    font-weight:500;

}

.benefits i{

    color:#10B981;

    font-size:20px;

}

/* ========= FORM CARD ========= */

.form-card{

    background:#fff;

    padding:45px;

    border-radius:20px;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

}

.form-card h2{

    text-align:center;

    font-size:34px;

    margin-bottom:10px;

}

.form-card p{

    text-align:center;

    color:#6B7280;

    margin-bottom:35px;

}

/* ========= INPUT ========= */

.input-group{

    margin-bottom:22px;

}

.input-group label{

    display:block;

    margin-bottom:8px;

    font-weight:600;

    color:#374151;

}

.input-group input{

    width:100%;

    padding:15px;

    border:1px solid #D1D5DB;

    border-radius:10px;

    font-size:16px;

    transition:.3s;

}

.input-group input:focus{

    outline:none;

    border-color:#0F766E;

    box-shadow:0 0 0 4px rgba(15,118,110,.12);

}

/* ========= PASSWORD ========= */

.password-box{

    position:relative;

}

.password-box input{

    padding-right:55px;

}

.toggle-password{

    position:absolute;

    right:15px;

    top:50%;

    transform:translateY(-50%);

    border:none;

    background:none;

    cursor:pointer;

    color:#6B7280;

    font-size:18px;

}

/* ========= CHECKBOX ========= */

.checkbox{

    display:flex;

    align-items:center;

    gap:10px;

    margin:20px 0;

    font-size:15px;

}

.checkbox input{

    width:18px;

    height:18px;

}

/* ========= REMEMBER ========= */

.remember-row{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:25px;

    font-size:15px;

}

.remember-row a{

    color:#0F766E;

    font-weight:600;

}

/* ========= BUTTON ========= */

.register-btn,
.login-btn{

    width:100%;

    padding:15px;

    font-size:17px;

}

/* ========= DIVIDER ========= */

.divider{

    text-align:center;

    margin:30px 0;

    position:relative;

}

.divider span{

    background:#fff;

    padding:0 15px;

    color:#6B7280;

    position:relative;

    z-index:2;

}

.divider::before{

    content:"";

    position:absolute;

    left:0;

    top:50%;

    width:100%;

    height:1px;

    background:#E5E7EB;

}

.social-btn{

    width:100%;

    display:flex;

    justify-content:center;

    align-items:center;

    gap:10px;

}

/* ========= MESSAGE ========= */

#message{

    margin-top:18px;

    text-align:center;

    font-weight:600;

}

/* ========= FOOTER ========= */

.auth-footer{

    text-align:center;

    padding:25px;

    color:#6B7280;

    font-size:15px;

}

/* ==========================================
   PART 5 : USER DASHBOARD
========================================== */

/* Dashboard Background */

.dashboard-body{
    background:#F4F7FB;
    min-height:100vh;
    display:flex;
}

/* ===========================
SIDEBAR
=========================== */

.sidebar{

    width:260px;

    background:#0F172A;

    color:#fff;

    position:fixed;

    left:0;

    top:0;

    bottom:0;

    padding:30px 20px;

    overflow-y:auto;

}

.sidebar-logo{

    display:flex;

    align-items:center;

    gap:12px;

    margin-bottom:45px;

}

.sidebar-logo i{

    font-size:34px;

    color:#14B8A6;

}

.sidebar-logo h2{

    font-size:28px;

}

.sidebar-menu{

    display:flex;

    flex-direction:column;

    gap:10px;

}

.sidebar-menu li{

    list-style:none;

}

.sidebar-menu a{

    display:flex;

    align-items:center;

    gap:15px;

    padding:15px;

    border-radius:12px;

    color:#CBD5E1;

    transition:.3s;

    font-weight:500;

}

.sidebar-menu a:hover{

    background:#1E293B;

    color:#fff;

}

.sidebar-menu .active a{

    background:#14B8A6;

    color:#fff;

}

/* ===========================
MAIN CONTENT
=========================== */

.dashboard-main{

    margin-left:260px;

    width:calc(100% - 260px);

    padding:35px;

}

/* ===========================
TOP HEADER
=========================== */

.dashboard-header{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:35px;

}

.dashboard-header h1{

    font-size:34px;

}

.dashboard-header p{

    color:#64748B;

    margin-top:8px;

}

.header-actions{

    display:flex;

    align-items:center;

    gap:20px;

}

.notification-btn{

    width:48px;

    height:48px;

    border:none;

    border-radius:50%;

    background:#fff;

    box-shadow:0 8px 20px rgba(0,0,0,.08);

    cursor:pointer;

}

.profile-avatar{

    width:50px;

    height:50px;

    border-radius:50%;

}

/* ===========================
OVERVIEW CARDS
=========================== */

.overview{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

    margin-bottom:40px;

}

.overview-card{

    background:#fff;

    padding:25px;

    border-radius:16px;

    box-shadow:0 10px 25px rgba(0,0,0,.06);

    display:flex;

    justify-content:space-between;

    align-items:center;

    transition:.3s;

}

.overview-card:hover{

    transform:translateY(-6px);

}

.overview-card h4{

    color:#64748B;

    margin-bottom:10px;

}

.overview-card h2{

    font-size:30px;

}

.overview-card i{

    font-size:42px;

    color:#14B8A6;

}

.status.active{

    color:#10B981;

}

/* ===========================
LICENSE CARD
=========================== */

.license-card{

    background:#fff;

    padding:35px;

    border-radius:18px;

    box-shadow:0 10px 25px rgba(0,0,0,.06);

    margin-bottom:40px;

}

.license-card h2{

    margin-bottom:12px;

}

.license-key{

    margin:25px 0;

    background:#ECFDF5;

    color:#065F46;

    padding:18px;

    border-radius:12px;

    font-size:22px;

    font-weight:700;

    letter-spacing:2px;

    text-align:center;

}

.license-buttons{

    display:flex;

    gap:20px;

}

/* ===========================
QUICK ACTIONS
=========================== */

.quick-actions{

    margin-top:40px;

}

.action-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

}

.action-card{

    background:#fff;

    padding:30px;

    border-radius:18px;

    text-align:center;

    box-shadow:0 10px 25px rgba(0,0,0,.06);

    transition:.3s;

}

.action-card:hover{

    transform:translateY(-8px);

}

.action-card i{

    font-size:42px;

    color:#14B8A6;

    margin-bottom:20px;

}

.action-card h3{

    margin-bottom:15px;

}

.action-card p{

    color:#64748B;

    margin-bottom:25px;

}

/* ===========================
TABLES
=========================== */

.table-card{

    background:#fff;

    padding:25px;

    border-radius:18px;

    box-shadow:0 10px 25px rgba(0,0,0,.06);

    overflow-x:auto;

}

table{

    width:100%;

    border-collapse:collapse;

}

table th{

    background:#F8FAFC;

    padding:16px;

    text-align:left;

    color:#475569;

}

table td{

    padding:16px;

    border-bottom:1px solid #E5E7EB;

}

table tr:hover{

    background:#F9FAFB;

}

/* ===========================
PROFILE CARD
=========================== */

.profile-card{

    background:#fff;

    padding:35px;

    border-radius:18px;

    text-align:center;

    box-shadow:0 10px 25px rgba(0,0,0,.06);

}

.profile-image{

    width:110px;

    height:110px;

    border-radius:50%;

    margin:auto;

    margin-bottom:20px;

}

.profile-info{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:20px;

    margin:30px 0;

}

.profile-info strong{

    display:block;

    margin-bottom:6px;

}

/* ==========================================
   PART 6 : PAYMENT + ADMIN PANEL
========================================== */

/* ===========================
PAYMENT PAGE
=========================== */

.payment-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:30px;

    margin-top:30px;

}

.payment-card{

    background:#fff;

    padding:35px;

    border-radius:18px;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

    transition:.3s;

}

.payment-card:hover{

    transform:translateY(-5px);

}

.payment-card h2{

    margin-bottom:15px;

    color:#111827;

}

.payment-card h1{

    color:#0F766E;

    font-size:48px;

    margin-bottom:10px;

}

.payment-card p{

    color:#6B7280;

    margin-bottom:20px;

}

.payment-card ul{

    margin:25px 0;

}

.payment-card ul li{

    padding:10px 0;

    border-bottom:1px solid #E5E7EB;

}

.qr-image{

    width:240px;

    height:240px;

    object-fit:contain;

    margin:20px auto;

    border:8px solid #F3F4F6;

    border-radius:12px;

}

.payment-info{

    margin:25px 0;

    background:#F9FAFB;

    padding:20px;

    border-radius:12px;

}

.payment-info p{

    margin:10px 0;

}

.payment-card input{

    width:100%;

    padding:14px;

    margin-top:10px;

    margin-bottom:20px;

    border:1px solid #D1D5DB;

    border-radius:10px;

}

.summary-card{

    background:#fff;

    padding:30px;

    border-radius:18px;

    box-shadow:0 10px 25px rgba(0,0,0,.06);

    margin-top:40px;

}

.summary-card table{

    width:100%;

}

.summary-card td,
.summary-card th{

    padding:15px;

}

/* ===========================
BADGES
=========================== */

.badge{

    display:inline-block;

    padding:6px 14px;

    border-radius:30px;

    font-size:13px;

    font-weight:600;

}

.badge.success{

    background:#DCFCE7;

    color:#166534;

}

.badge.pending{

    background:#FEF3C7;

    color:#92400E;

}

.badge.danger{

    background:#FEE2E2;

    color:#991B1B;

}

/* ===========================
ADMIN PANEL
=========================== */

.search-box{

    width:100%;

    padding:15px;

    border:1px solid #D1D5DB;

    border-radius:12px;

    margin:25px 0;

    font-size:16px;

}

.search-box:focus{

    outline:none;

    border-color:#0F766E;

}

.activity-card{

    background:#fff;

    border-radius:18px;

    padding:30px;

    box-shadow:0 10px 25px rgba(0,0,0,.06);

}

.activity-item{

    display:flex;

    align-items:center;

    gap:18px;

    padding:18px 0;

    border-bottom:1px solid #E5E7EB;

}

.activity-item:last-child{

    border-bottom:none;

}

.activity-item i{

    width:55px;

    height:55px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    background:#ECFDF5;

    color:#0F766E;

    font-size:22px;

}

.activity-item strong{

    display:block;

    margin-bottom:6px;

}

.activity-item p{

    color:#6B7280;

}

/* ===========================
SETTINGS
=========================== */

.settings-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:25px;

    margin-top:30px;

}

.setting-card{

    background:#fff;

    padding:30px;

    text-align:center;

    border-radius:18px;

    box-shadow:0 10px 25px rgba(0,0,0,.06);

}

.setting-card i{

    font-size:40px;

    color:#14B8A6;

    margin-bottom:20px;

}

.setting-card h3{

    margin-bottom:12px;

}

.setting-card p{

    color:#6B7280;

    margin-bottom:20px;

}

/* ===========================
SUPPORT
=========================== */

.support-card{

    background:linear-gradient(135deg,#0F766E,#115E59);

    color:#fff;

    padding:50px;

    border-radius:20px;

    text-align:center;

    margin-top:40px;

}

.support-card h2{

    font-size:36px;

    margin-bottom:15px;

}

.support-card p{

    color:#E5E7EB;

    margin-bottom:30px;

}

.support-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

}

.dashboard-footer{

    margin-left:260px;

    text-align:center;

    padding:25px;

    color:#6B7280;

}

/* ==========================================
   PART 7 : RESPONSIVE + ANIMATIONS + UTILITIES
========================================== */

/* ===========================
FADE ANIMATION
=========================== */

@keyframes fadeUp{

    from{

        opacity:0;
        transform:translateY(40px);

    }

    to{

        opacity:1;
        transform:translateY(0);

    }

}

.fade-up{

    animation:fadeUp .8s ease forwards;

}

/* ===========================
FLOAT ANIMATION
=========================== */

@keyframes floating{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-10px);

    }

    100%{

        transform:translateY(0);

    }

}

.floating{

    animation:floating 4s ease-in-out infinite;

}

/* ===========================
COMMON UTILITIES
=========================== */

.text-center{

    text-align:center;

}

.mt-1{margin-top:10px;}
.mt-2{margin-top:20px;}
.mt-3{margin-top:30px;}
.mt-4{margin-top:40px;}
.mt-5{margin-top:50px;}

.mb-1{margin-bottom:10px;}
.mb-2{margin-bottom:20px;}
.mb-3{margin-bottom:30px;}
.mb-4{margin-bottom:40px;}
.mb-5{margin-bottom:50px;}

.shadow{

    box-shadow:0 15px 35px rgba(0,0,0,.08);

}

.rounded{

    border-radius:16px;

}

.w-100{

    width:100%;

}

.hidden{

    display:none;

}

/* ===========================
SCROLLBAR
=========================== */

::-webkit-scrollbar{

    width:8px;

}

::-webkit-scrollbar-thumb{

    background:#0F766E;

    border-radius:30px;

}

::-webkit-scrollbar-track{

    background:#F1F5F9;

}

/* ===========================
RESPONSIVE 1200px
=========================== */

@media(max-width:1200px){

.hero-grid{

grid-template-columns:1fr;

text-align:center;

}

.hero-buttons{

justify-content:center;

}

.hero-stats{

justify-content:center;

}

.feature-grid{

grid-template-columns:repeat(2,1fr);

}

.workflow-grid{

grid-template-columns:repeat(2,1fr);

}

.trusted-grid{

grid-template-columns:repeat(2,1fr);

}

.action-grid{

grid-template-columns:repeat(2,1fr);

}

.overview{

grid-template-columns:repeat(2,1fr);

}

.payment-grid{

grid-template-columns:1fr;

}

.settings-grid{

grid-template-columns:repeat(2,1fr);

}

}

/* ===========================
RESPONSIVE 992px
=========================== */

@media(max-width:992px){

/* FIX: the sidebar used to slide off-screen (left:-260px) and only come
   back via a ".active" class that nothing in the JS ever adds — making
   the whole nav unreachable on tablets/phones. This version just lets
   the sidebar stack normally above the page content instead, so it's
   always visible and needs no JavaScript toggle at all. */
.sidebar{

position:relative;

left:0;

top:auto;

bottom:auto;

width:100%;

height:auto;

}

.dashboard-main{

margin-left:0;

width:100%;

padding:25px;

}

.dashboard-footer{

margin-left:0;

}

.profile-info{

grid-template-columns:1fr;

}

}

/* ===========================
RESPONSIVE 768px
=========================== */

@media(max-width:768px){

.nav-menu{

display:none;

position:absolute;

top:80px;

left:0;

width:100%;

background:#fff;

padding:20px;

flex-direction:column;

box-shadow:0 10px 20px rgba(0,0,0,.08);

}

.nav-menu.active{

display:flex;

}

.mobile-menu{

display:block;

}

.hero h1{

font-size:42px;

}

.section-title h2{

font-size:34px;

}

.feature-grid,
.workflow-grid,
.trusted-grid,
.testimonial-grid,
.action-grid,
.overview,
.settings-grid{

grid-template-columns:1fr;

}

.auth-container{

grid-template-columns:1fr;

}

.auth-left{

text-align:center;

}

.hero-buttons{

flex-direction:column;

align-items:center;

}

.footer-content{

flex-direction:column;

text-align:center;

}

.support-buttons{

flex-direction:column;

}

.dashboard-header{

flex-direction:column;

align-items:flex-start;

gap:20px;

}

}

/* ===========================
RESPONSIVE 480px
=========================== */

@media(max-width:480px){

.hero{

padding-top:120px;

}

.hero h1{

font-size:34px;

}

.hero p{

font-size:16px;

}

.logo{

font-size:22px;

}

.logo i{

font-size:24px;

}

.btn{

width:100%;

}

.form-card{

padding:30px 20px;

}

.payment-card{

padding:25px;

}

.license-key{

font-size:16px;

word-break:break-all;

}

table{

font-size:13px;

}

table th,
table td{

padding:10px;

}

}

/* ===========================
END OF FILE
=========================== */



/* ==========================================
   FormPilot - styles.css
   Stylesheet for the auth pages only:
   login.html, register.html, admin-login.html
   (the rest of the site uses style.css)
========================================== */

:root{
    color-scheme:light;
    --ink:#0B0F17;
    --ink-soft:#12161f;
    --paper:#F8FAFC;
    --white:#ffffff;
    --teal:#0F766E;
    --teal-light:#14B8A6;
    --text-dark:#111827;
    --text-gray:#6B7280;
    --border:#E5E7EB;
    --danger:#ef4444;
    --danger-bg:#FEF2F2;
    --success:#16a34a;
    --success-bg:#F0FDF4;
    --radius:14px;
    --shadow:0 20px 45px rgba(11,15,23,.12);
}

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

body{
    font-family:'Inter',sans-serif;
    background:var(--paper);
    color:var(--text-dark);
    -webkit-font-smoothing:antialiased;
}

a{
    text-decoration:none;
    color:var(--teal);
}

a:hover{
    text-decoration:underline;
}

button{
    font-family:inherit;
}

/* ==========================================
   LAYOUT — two-column shell
========================================== */

.auth-shell{
    min-height:100vh;
    display:flex;
}

/* ==========================================
   LEFT PANEL — dark instrument panel
========================================== */

.panel{
    flex:0 0 42%;
    background:
        radial-gradient(circle at 15% 0%, rgba(15,118,110,.35), transparent 55%),
        var(--ink);
    color:#fff;
    padding:56px 48px;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    gap:48px;
}

.brand{
    display:flex;
    align-items:center;
    gap:10px;
    font-family:'Space Grotesk',sans-serif;
    font-weight:600;
    font-size:18px;
    letter-spacing:.2px;
}

.brand-mark{
    width:34px;
    height:34px;
    background:#fff;
    border-radius:9px;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
}

.brand-mark svg{
    width:16px;
    height:16px;
}

.panel-copy{
    flex:1;
    display:flex;
    flex-direction:column;
    justify-content:center;
    gap:18px;
}

.panel-eyebrow{
    font-family:'IBM Plex Mono',monospace;
    font-size:12px;
    letter-spacing:1.6px;
    text-transform:uppercase;
    color:var(--teal-light);
}

.panel-copy h1{
    font-family:'Space Grotesk',sans-serif;
    font-weight:700;
    font-size:clamp(28px,4vw,38px);
    line-height:1.2;
    letter-spacing:-.3px;
}

.panel-copy p{
    font-size:15px;
    line-height:1.6;
    color:rgba(255,255,255,.68);
    max-width:380px;
}

.checklist{
    border-top:1px solid rgba(255,255,255,.12);
    padding-top:24px;
    display:flex;
    flex-direction:column;
    gap:12px;
}

.checklist-title{
    font-family:'IBM Plex Mono',monospace;
    font-size:11px;
    letter-spacing:1.2px;
    text-transform:uppercase;
    color:rgba(255,255,255,.45);
    margin-bottom:6px;
}

.checklist-row{
    display:flex;
    align-items:center;
    gap:10px;
}

.checklist-box{
    width:16px;
    height:16px;
    border-radius:5px;
    border:1.5px solid rgba(255,255,255,.3);
    flex-shrink:0;
    position:relative;
}

.checklist-row.is-checked .checklist-box{
    background:var(--teal-light);
    border-color:var(--teal-light);
}

.checklist-row.is-checked .checklist-box::after{
    content:"";
    position:absolute;
    left:4px;
    top:1px;
    width:5px;
    height:8px;
    border:solid var(--ink);
    border-width:0 2px 2px 0;
    transform:rotate(45deg);
}

.checklist-label{
    font-family:'IBM Plex Mono',monospace;
    font-size:13px;
    color:rgba(255,255,255,.82);
}

/* ==========================================
   RIGHT SIDE — form
========================================== */

.form-side{
    flex:1;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:48px 24px;
}

.form-card{
    width:100%;
    max-width:420px;
}

.back-link{
    display:inline-block;
    font-size:13px;
    color:var(--text-gray);
    margin-bottom:28px;
}

.form-card h2{
    font-family:'Space Grotesk',sans-serif;
    font-weight:700;
    font-size:28px;
    color:var(--text-dark);
    margin-bottom:8px;
}

.subtitle{
    color:var(--text-gray);
    font-size:14.5px;
    margin-bottom:28px;
}

.banner{
    display:none;
    font-size:13.5px;
    padding:12px 14px;
    border-radius:10px;
    margin-bottom:18px;
}

.banner.show{
    display:block;
}

.banner.error{
    background:var(--danger-bg);
    color:var(--danger);
    border:1px solid #FECACA;
}

.banner.success{
    background:var(--success-bg);
    color:var(--success);
    border:1px solid #BBF7D0;
}

.field{
    margin-bottom:18px;
}

.field label{
    display:block;
    font-size:13.5px;
    font-weight:500;
    color:var(--text-dark);
    margin-bottom:6px;
}

.field input{
    width:100%;
    padding:12px 14px;
    border:1.5px solid var(--border);
    border-radius:10px;
    font-size:14.5px;
    font-family:'Inter',sans-serif;
    color:var(--text-dark);
    background:var(--white);
    transition:border-color .15s ease, box-shadow .15s ease;
}

.field input::placeholder{
    color:#9CA3AF;
}

.field input:focus{
    outline:none;
    border-color:var(--teal);
    box-shadow:0 0 0 3px rgba(15,118,110,.12);
}

.field-error{
    min-height:16px;
    font-size:12.5px;
    color:var(--danger);
    margin-top:4px;
}

.submit-btn{
    width:100%;
    padding:13px;
    border:none;
    border-radius:10px;
    background:var(--teal);
    color:#fff;
    font-size:15px;
    font-weight:600;
    cursor:pointer;
    margin-top:6px;
    transition:background .15s ease, transform .1s ease;
}

.submit-btn:hover:not(:disabled){
    background:var(--teal-light);
}

.submit-btn:active:not(:disabled){
    transform:translateY(1px);
}

.submit-btn:disabled{
    opacity:.65;
    cursor:not-allowed;
}

.switch-line{
    text-align:center;
    font-size:13.5px;
    color:var(--text-gray);
    margin-top:22px;
}

.admin-link{
    text-align:center;
    margin-top:14px;
}

.admin-link a{
    font-size:12.5px;
    color:var(--text-gray);
}

/* Admin login gets a slightly cooler accent so it visually reads as a
   restricted/different area, without diverging from the brand. */
.auth-shell[data-context="admin"] .panel{
    background:
        radial-gradient(circle at 15% 0%, rgba(99,102,241,.25), transparent 55%),
        var(--ink);
}

.auth-shell[data-context="admin"] .panel-eyebrow{
    color:#A5B4FC;
}

.auth-shell[data-context="admin"] .checklist-row.is-checked .checklist-box{
    background:#818CF8;
    border-color:#818CF8;
}

/* ==========================================
   ACCESSIBILITY / MOTION
========================================== */

a:focus-visible,
button:focus-visible,
input:focus-visible{
    outline:2px solid var(--teal);
    outline-offset:2px;
}

@media (prefers-reduced-motion: reduce){
    .submit-btn{
        transition:none;
    }
}

/* ==========================================
   RESPONSIVE
========================================== */

@media (max-width: 900px){
    .auth-shell{
        flex-direction:column;
    }

    .panel{
        flex:none;
        padding:40px 32px;
        gap:32px;
    }

    .panel-copy h1{
        font-size:26px;
    }

    .checklist{
        display:none;
    }

    .form-side{
        padding:40px 24px 64px;
    }
}

@media (max-width: 420px){
    .panel{
        padding:32px 24px;
    }

    .form-side{
        padding:32px 16px 56px;
    }
}
