/* Fundo da tela inteira */
.bg-login-page {
    background-color: #f0f2f5;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

/* Painel Esquerdo Escuro (Azul Noturno / Roxo Escuro) */
.bg-side-panel {
    background: linear-gradient(145deg, #1e1b4b 0%, #312e81 100%);
    position: relative;
}

/* Destaque Dourado */
.text-gold {
    color: #f59e0b !important;
}

/* Círculo do ícone na esquerda com borda pontilhada (estilo sua imagem) */
.icon-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 2px dashed rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
}

/* Pontinhos de navegação/slider na esquerda */
.dot {
    width: 8px;
    height: 8px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: inline-block;
}

.dot.active {
    background-color: #ffffff;
    width: 18px;
    border-radius: 10px;
}

/* Customização dos Inputs */
.input-group-text, .form-control {
    border-color: #e2e8f0;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

.form-control:focus {
    box-shadow: none;
    border-color: #6366f1;
    background-color: #ffffff !important;
}

.input-group:focus-within .input-group-text {
    border-color: #6366f1;
    color: #6366f1 !important;
    background-color: #ffffff !important;
}

/* Botão Azul com Gradiente chamativo */
.btn-gradient {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    border: none;
    color: #ffffff;
    transition: all 0.3s ease;
}

.btn-gradient:hover {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.35) !important;
}