.elementor-15 .elementor-element.elementor-element-7947a1e2{--display:flex;}[data-theme="dark"] .elementor-15 .elementor-element.elementor-element-3fecba1a{color:#ffffff;}/* Start custom CSS for text-editor, class: .elementor-element-3fecba1a *//*
 * ELEMENTOR WORDPRESS LOGIN THEME CSS
 * Estilização completa para widgets Elementor
 * Baseado no template page-iframe.php
 * Suporte a tema claro/escuro, responsivo, UI/UX otimizado
 */

/* ===== VARIÁVEIS CSS ===== */
:root {
    /* Cores principais */
    --primary-color: #6366f1;
    --primary-rgb: 99, 102, 241;
    --secondary-color: #8b5cf6;
    --accent-color: #06b6d4;
    
    /* Cores de texto */
    --text-dark: #1f2937;
    --text-light: #f9fafb;
    --text-muted: #6b7280;
    
    /* Cores de fundo */
    --bg-light: #ffffff;
    --bg-dark: #111827;
    --bg-card: #ffffff;
    --bg-input: #f9fafb;
    
    /* Sombras */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    
    /* Bordas */
    --border-radius: 8px;
    --border-radius-lg: 12px;
    --border-color: rgba(0, 0, 0, 0.1);
    
    /* Transições */
    --transition: all 0.3s ease;
    --transition-fast: all 0.15s ease;
}

/* Tema escuro */
[data-theme="dark"] {
    --primary-color: #818cf8;
    --secondary-color: #a78bfa;
    --accent-color: #22d3ee;
    --text-dark: #f9fafb;
    --text-light: #f9fafb;
    --text-muted: #d1d5db;
    --bg-light: #111827;
    --bg-dark: #111827;
    --bg-card: rgba(255, 255, 255, 0.05);
    --bg-input: rgba(255, 255, 255, 0.1);
    --border-color: rgba(255, 255, 255, 0.1);
}

/* ===== RESET E BASE ===== */
.elementor-widget-container {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
}

/* ===== CONTAINER PRINCIPAL ===== */
.wp-login-container {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    padding: 20px;
    background: var(--bg-card);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.wp-login-container:hover {
    transform: translateY(-2px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* ===== CABEÇALHO ===== */
.wp-login-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.wp-login-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.wp-login-title {
    font-size: 28px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 8px 0;
}

.wp-login-subtitle {
    font-size: 14px;
    color: var(--text-muted);
    margin: 0;
}

/* ===== FORMULÁRIOS ===== */
.wp-login-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.wp-form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.wp-form-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    margin: 0;
}

.wp-form-input {
    width: 100%;
    padding: 12px 16px;
    font-size: 16px;
    background: var(--bg-input);
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    color: var(--text-dark);
    transition: var(--transition);
    box-sizing: border-box;
}

.wp-form-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.1);
    background: var(--bg-light);
}

.wp-form-input::placeholder {
    color: var(--text-muted);
    opacity: 0.7;
}

/* ===== BOTÕES ===== */
.wp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    box-sizing: border-box;
    width: 100%;
}

.wp-btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    box-shadow: var(--shadow-md);
}

.wp-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
}

.wp-btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.wp-btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-1px);
}

.wp-btn-ghost {
    background: transparent;
    color: var(--text-muted);
    border: 1px solid var(--border-color);
    font-weight: 500;
}

.wp-btn-ghost:hover {
    background: var(--bg-input);
    color: var(--text-dark);
    border-color: var(--primary-color);
}

/* ===== CARDS ===== */
.wp-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    margin-bottom: 20px;
}

.wp-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.wp-card-header {
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-color);
}

.wp-card-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 8px 0;
}

.wp-card-subtitle {
    font-size: 14px;
    color: var(--text-muted);
    margin: 0;
}

.wp-card-content {
    color: var(--text-dark);
    line-height: 1.6;
}

.wp-card-footer {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* ===== ALERTAS E MENSAGENS ===== */
.wp-alert {
    padding: 12px 16px;
    border-radius: var(--border-radius);
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 500;
}

.wp-alert-success {
    background: rgba(34, 197, 94, 0.1);
    color: #059669;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.wp-alert-error {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.wp-alert-warning {
    background: rgba(245, 158, 11, 0.1);
    color: #d97706;
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.wp-alert-info {
    background: rgba(var(--primary-rgb), 0.1);
    color: var(--primary-color);
    border: 1px solid rgba(var(--primary-rgb), 0.2);
}

/* ===== LINKS ===== */
.wp-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-fast);
}

.wp-link:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.wp-link-muted {
    color: var(--text-muted);
    font-size: 14px;
}

.wp-link-muted:hover {
    color: var(--text-dark);
}

/* ===== UTILITÁRIOS ===== */
.wp-text-center { text-align: center; }
.wp-text-left { text-align: left; }
.wp-text-right { text-align: right; }

.wp-mb-0 { margin-bottom: 0; }
.wp-mb-1 { margin-bottom: 8px; }
.wp-mb-2 { margin-bottom: 16px; }
.wp-mb-3 { margin-bottom: 24px; }
.wp-mb-4 { margin-bottom: 32px; }

.wp-mt-0 { margin-top: 0; }
.wp-mt-1 { margin-top: 8px; }
.wp-mt-2 { margin-top: 16px; }
.wp-mt-3 { margin-top: 24px; }
.wp-mt-4 { margin-top: 32px; }

.wp-flex { display: flex; }
.wp-flex-col { flex-direction: column; }
.wp-items-center { align-items: center; }
.wp-justify-center { justify-content: center; }
.wp-gap-2 { gap: 8px; }
.wp-gap-3 { gap: 12px; }
.wp-gap-4 { gap: 16px; }

/* ===== TOGGLE TEMA ===== */
.wp-theme-toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    z-index: 1000;
}

.wp-theme-toggle:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.wp-theme-icon {
    font-size: 20px;
    transition: var(--transition);
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 768px) {
    .wp-login-container {
        max-width: 100%;
        margin: 10px;
        padding: 16px;
    }
    
    .wp-login-title {
        font-size: 24px;
    }
    
    .wp-card {
        padding: 16px;
        margin-bottom: 16px;
    }
    
    .wp-card-footer {
        flex-direction: column;
    }
    
    .wp-btn {
        padding: 14px 20px;
        font-size: 16px;
    }
    
    .wp-theme-toggle {
        top: 15px;
        right: 15px;
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    .wp-login-container {
        margin: 5px;
        padding: 12px;
    }
    
    .wp-login-title {
        font-size: 20px;
    }
    
    .wp-login-logo {
        font-size: 20px;
    }
    
    .wp-card {
        padding: 12px;
    }
    
    .wp-form-input {
        padding: 10px 12px;
        font-size: 16px;
    }
    
    .wp-btn {
        padding: 12px 16px;
    }
    
    .wp-theme-toggle {
        width: 40px;
        height: 40px;
    }
    
    .wp-theme-icon {
        font-size: 16px;
    }
}

/* ===== ANIMAÇÕES ===== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.wp-animate-fade {
    animation: fadeIn 0.5s ease-out;
}

.wp-animate-slide {
    animation: slideIn 0.3s ease-out;
}

/* ===== ESTADOS DE LOADING ===== */
.wp-loading {
    position: relative;
    pointer-events: none;
    opacity: 0.7;
}

.wp-loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid var(--primary-color);
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ===== CLASSES ESPECÍFICAS WORDPRESS ===== */
.wp-login-form .wp-form-group:last-child {
    margin-bottom: 0;
}

.wp-remember-me {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-muted);
}

.wp-remember-me input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: var(--primary-color);
}

.wp-lost-password {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.wp-back-to-login {
    text-align: center;
    margin-top: 16px;
}

/* ===== MODO ESCURO AUTOMÁTICO ===== */
@media (prefers-color-scheme: dark) {
    :root:not([data-theme]) {
        --primary-color: #818cf8;
        --secondary-color: #a78bfa;
        --accent-color: #22d3ee;
        --text-dark: #f9fafb;
        --text-light: #f9fafb;
        --text-muted: #d1d5db;
        --bg-light: #111827;
        --bg-dark: #111827;
        --bg-card: rgba(255, 255, 255, 0.05);
        --bg-input: rgba(255, 255, 255, 0.1);
        --border-color: rgba(255, 255, 255, 0.1);
    }
}/* End custom CSS */