﻿body {
    background: #f8fafc;
    font-family: Inter, sans-serif;
}

.demo-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.demo-card {
    width: 100%;
    max-width: 620px;
    background: white;
    border-radius: 28px;
    padding: 40px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 30px rgba(15,23,42,.08);
}

.demo-title {
    font-size: 2.2rem;
    font-weight: 700;
}

.demo-subtitle {
    color: #64748b;
}

.demo-badge {
    display: inline-block;
    background: #dbeafe;
    color: #2563eb;
    padding: 8px 14px;
    border-radius: 999px;
    font-weight: 600;
    margin-bottom: 20px;
}

.form-control {
    border-radius: 16px;
    border: 1px solid #cbd5e1;
    padding: 14px;
}

    .form-control:focus {
        box-shadow: none;
        border-color: #2563eb;
    }

.btn-primary {
    background: #2563eb;
    border: none;
    padding: 14px;
}

    .btn-primary:hover {
        background: #1d4ed8;
    }


.success-box {
    max-width: 600px;
    margin: 80px auto;
    background: #fff;
    padding: 48px;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,.08);
}

.success-icon {
    width: 64px;
    height: 64px;
    margin: auto;
    border-radius: 50%;
    background: #dcfce7;
    color: #166534;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 24px;
}

.btn-back {
    display: inline-block;
    margin-top: 24px;
    padding: 14px 24px;
    background: #2563eb;
    color: #fff;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 600;
}


/* =========================================
   CONSUNTIVAPRO - PRIVACY PAGE
========================================= */

.privacy-page {
    background: #f8fafc;
    min-height: 100vh;
    padding: 60px 20px;
}

.privacy-container {
    max-width: 900px;
    margin: 0 auto;
}

.privacy-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 48px;
    box-shadow: 0 10px 30px rgba(15,23,42,0.06), 0 4px 12px rgba(15,23,42,0.04);
    border: 1px solid rgba(15,23,42,0.06);
}

/* =========================================
   TITLES
========================================= */

.privacy-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 32px;
    letter-spacing: -0.03em;
}

.privacy-section-title {
    font-size: 1.15rem;
    font-weight: 600;
    color: #0f172a;
    margin-top: 36px;
    margin-bottom: 12px;
}

/* =========================================
   TEXT
========================================= */

.privacy-text {
    color: #475569;
    line-height: 1.8;
    font-size: 1rem;
}

.privacy-list {
    margin-top: 12px;
    margin-bottom: 12px;
    padding-left: 20px;
}

    .privacy-list li {
        margin-bottom: 8px;
        color: #475569;
        line-height: 1.7;
    }

/* =========================================
   LINKS
========================================= */

.privacy-link {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
}

    .privacy-link:hover {
        text-decoration: underline;
    }

/* =========================================
   FOOTER NOTE
========================================= */

.privacy-footer {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid #e2e8f0;
    color: #94a3b8;
    font-size: 0.9rem;
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width:768px) {

    .privacy-page {
        padding: 30px 14px;
    }

    .privacy-card {
        padding: 28px;
        border-radius: 18px;
    }

    .privacy-title {
        font-size: 1.8rem;
    }
}