/* Data Confiance — Enterprise Auth Theme (dc-auth.css) */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:wght@700;800&display=swap');

html, body.dc-auth-body {
    font-family: 'Inter', sans-serif;
    background-color: #0b132b;
    color: #f8fafc;
    height: 100vh;
    min-height: 100vh;
    max-height: 100vh;
    margin: 0;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden !important;
    background-image: 
        radial-gradient(at 0% 0%, rgba(0, 121, 186, 0.22) 0px, transparent 55%),
        radial-gradient(at 100% 100%, rgba(76, 119, 0, 0.2) 0px, transparent 55%);
}

.dc-auth-layout {
    width: 100%;
    max-width: 860px;
    max-height: calc(100vh - 24px);
    background: #0f172a;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    display: flex;
    flex-direction: row;
    margin: auto;
}

.dc-auth-panel {
    flex: 1;
    padding: 24px 24px;
    background: linear-gradient(135deg, rgba(10, 19, 34, 0.96) 0%, rgba(20, 35, 55, 0.9) 100%);
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow-y: auto;
}

.dc-auth-form-container {
    width: 420px;
    padding: 20px 24px;
    background: #ffffff;
    color: #0f172a;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow-y: auto;
}

.dc-auth-form .mb-3,
.dc-auth-form .mb-2 {
    margin-bottom: 0.6rem !important;
}

.dc-auth-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
}

.dc-auth-feature-icon {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    background: rgba(0, 121, 186, 0.2);
    color: #38bdf8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.dc-auth-brand-badge {
    background: #ffffff;
    padding: 6px 12px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    margin-bottom: 16px;
}

.dc-auth-brand-badge img {
    height: 32px;
    width: auto;
    object-fit: contain;
    display: block;
}

@media (max-width: 768px) {
    html, body.dc-auth-body {
        overflow: auto !important;
        height: auto;
        min-height: 100vh;
        padding: 12px;
    }
    .dc-auth-layout {
        flex-direction: column;
        max-width: 440px;
        max-height: none;
    }
    .dc-auth-panel {
        display: none;
    }
    .dc-auth-form-container {
        width: 100%;
        padding: 20px 16px;
    }
}
